Skip to content

Commit

Permalink
Merge pull request #245 from buggregator/Kreezag-patch-1
Browse files Browse the repository at this point in the history
Fix makefile to run server locally
  • Loading branch information
Kreezag authored Aug 25, 2024
2 parents 34b70b9 + 683c032 commit 8312f27
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

build:
if [ ! -d "runtime" ]; then \
mkdir runtime/configs -p; \
mkdir -p runtime/configs; \
chmod 0777 -R runtime; \
fi
chmod +x bin/get-binaries.sh; \
Expand All @@ -11,12 +11,12 @@ build:
./get-binaries.sh; \
cd ../; \
fi
if [ ! -f "rr" ]; then \
vendor/bin/rr get;\
fi
if [ ! -d "vendor" ]; then \
composer i --ignore-platform-reqs; \
fi
if [ ! -f "rr" ]; then \
vendor/bin/rr get;\
fi
if [ ! -d ".db" ]; then \
mkdir .db; \
chmod 0777 -R .db; \
Expand Down

0 comments on commit 8312f27

Please sign in to comment.