Fixes spacelines and clean out output

This commit is contained in:
Ds886 2021-12-24 00:52:44 +02:00
parent de513fd714
commit 7992ee47e3
3 changed files with 3 additions and 5 deletions

View File

@ -11,7 +11,6 @@ RUN chmod +x dotnet-install.sh
RUN ./dotnet-install.sh -c 2.1
ENV PATH="${PATH}:/root/.dotnet/tools"
RUN echo "-------------------Installing armips------------------"
WORKDIR /opt/dep
RUN git clone --recursive https://github.com/Kingcom/armips.git
WORKDIR /opt/dep/armips
RUN mkdir -p bld
@ -25,4 +24,4 @@ RUN cp /opt/dep/armips/bld/libarmips.a /opt/src/bin/libarmips.a
RUN echo "-------------------Building patched rom------------------"
COPY ./ /opt/src
WORKDIR /opt/src
CMD ./docker-build-rom-script
CMD ./docker-build-rom-script

View File

@ -9,4 +9,4 @@ echo "Starting to build rom"
echo "Copying rom to output"
cp ./bin/m12.gba /opt/out
echo "Build successful please review the folder out for the resulted rom"
echo "Build successful please review the folder "./out/m12.gba" for the resulted rom"

View File

@ -3,5 +3,4 @@ rm -rf ./out
mkdir -p ./out
docker rm image mother2gba:build
docker build ./ -t mother2gba:build
docker run --rm -it -v $PWD/out:/opt/out mother2gba:build
docker run --rm -it -v $PWD/out:/opt/out mother2gba:build