Skip to content

Commit

Permalink
-f doesn't actually need ls and just looked odd.
Browse files Browse the repository at this point in the history
  • Loading branch information
SpcFORK authored Jun 28, 2024
1 parent b5b29a3 commit b45f18a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ if [ "$1" == "--runtime" ]; then
doJob "Compiling runtime" "gcc -Idist/ runtime/voxel.c -o runtime/build/voxel"

if [ "$2" == "--zip" ]; then
if [ ls -f runtime/build.zip ]; then
if [ -f runtime/build.zip ]; then
rm runtime/build.zip
echo "Removed old build.zip"
fi
Expand Down

0 comments on commit b45f18a

Please sign in to comment.