Fixes spacelines and clean out output
This commit is contained in:
parent
de513fd714
commit
7992ee47e3
|
@ -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
|
|
@ -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"
|
|
@ -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
|
Loading…
Reference in New Issue