Remove redundant parameter from suggested Docker command (#143)

* Remove redundant parameter from suggested Docker command

* Remove redundant parameter from suggested Docker command
This commit is contained in:
MisterSheeple
2023-11-08 12:25:45 -05:00
committed by GitHub
parent 80ef14e480
commit 5b7b5c314b
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -48,5 +48,5 @@ ENV PATH="/ac-decomp/tools:${PATH}"
ENV N64_SDK="/N64_SDK"
ENV DEVKITPPC="/opt/devkitpro/devkitPPC"
CMD echo 'Usage: docker run -it --rm -v ${PWD}:/ac-decomp ac-decomp python3 configure.py && ninja\n'\
CMD echo 'Usage: docker run --rm -v ${PWD}:/ac-decomp ac-decomp python3 configure.py && ninja\n'\
'See https://github.com/Prakxo/ac-decomp/blob/master/README.MD for more information'
+2 -2
View File
@@ -22,8 +22,8 @@ Use `--recursive` when cloning to have ppcdis in the repository.
5. Download the [CodeWarrior 1.3.2r compiler](https://mega.nz/file/WuBFTCLT#TmB5R4-1mEFkk4G1Vjn9_cHXRD9wOIH9CtOLaVSWEas) and extract it to *tools/1.3.2r/*.
6. Install Docker.
7. Build the Docker image (`docker build -t ac-decomp .`).
8. Run configure.py (`docker run -it --rm -v ${PWD}:/ac-decomp ac-decomp python3 configure.py`).
9. Run ninja (`docker run -it --rm -v ${PWD}:/ac-decomp ac-decomp ninja`).
8. Run configure.py (`docker run --rm -v ${PWD}:/ac-decomp ac-decomp python3 configure.py`).
9. Run ninja (`docker run --rm -v ${PWD}:/ac-decomp ac-decomp ninja`).
### Build manually