Skip to content

Commit

Permalink
fix Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
SpoofUoS committed Jul 3, 2023
1 parent e135562 commit 1b0b8d2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ test-app:
docker-compose -f ./build/docker-compose-test.yml up redis --build -d
if docker-compose -f ./build/docker-compose-test.yml up server --build ; then \
docker-compose -f ./build/docker-compose-test.yml down; \
cd ../ \
rm -r test \
cd ../; \
rm -r test; \
exit 1; \
else \
docker-compose -f ./build/docker-compose-test.yml down; \
cp -r ./* ../ \
cd ../ \
rm -r test \
cp -r ./* ../; \
cd ../; \
rm -r test; \
exit 0; \
fi

Expand Down

0 comments on commit 1b0b8d2

Please sign in to comment.