fix some docs (#13212)

* fix broken url in readme

* Update Building-Locally.md

* Update Building-Locally.md

* differentiate Windows (CMD) commands from Window (PowerShell)

* correct `macOS` spelling
This commit is contained in:
Md. Touhidur Rahman 2025-04-15 22:35:11 +06:00 committed by GitHub
parent 5d2bb1691c
commit adfaacb0f6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View File

@ -34,7 +34,7 @@ If you want a small, fast, moddable, FOSS, in-depth 4X that can still run on a p
- **Raspberry Pi** - [Pi-apps](https://github.com/Botspot/pi-apps) - **Raspberry Pi** - [Pi-apps](https://github.com/Botspot/pi-apps)
- **MacOS** - Via [Brew](https://brew.sh/) (`brew update && brew install unciv`) or install [with this guide](https://yairm210.github.io/Unciv/Other/Installing-on-macOS/) - **MacOS** - Via [Brew](https://brew.sh/) (`brew update && brew install unciv`) or install [with this guide](https://yairm210.github.io/Unciv/Other/Installing-on-macOS/)
- Jars, APKs and Windows/Linux builds also available in [Releases](https://github.com/yairm210/Unciv/releases) (run jar with `java -jar Unciv.jar`) - *not recommended* since we update frequently and you will quickly become out-of-date - Jars, APKs and Windows/Linux builds also available in [Releases](https://github.com/yairm210/Unciv/releases) (run jar with `java -jar Unciv.jar`) - *not recommended* since we update frequently and you will quickly become out-of-date
- [Build from scratch](https://yairm210.github.io/Unciv/Developers/Building-locally-without-Android-Studio/) if that's your thing - [Build from scratch](https://yairm210.github.io/Unciv/Developers/Building-Locally/#without-android-studio) if that's your thing
## What's the roadmap? ## What's the roadmap?

View File

@ -55,12 +55,12 @@ Unciv uses Gradle 8.7 and the Android Gradle Plugin 8.5. Can check in File > Pro
- Clone the project (see above initial steps) - Clone the project (see above initial steps)
- Open a terminal in the Unciv folder and run the following commands - Open a terminal in the Unciv folder and run the following commands
### Windows ### Windows (CMD)
- Running: `gradlew desktop:run` - Running: `gradlew desktop:run`
- Building: `gradlew desktop:dist` - Building: `gradlew desktop:dist`
### Linux/Mac OS ### Linux / macOS / Windows (PowerShell)
- Running: `./gradlew desktop:run` - Running: `./gradlew desktop:run`
- Building: `./gradlew desktop:dist` - Building: `./gradlew desktop:dist`