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

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

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