Skip to content

Commit

Permalink
Update start.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
mjjonone authored Sep 5, 2023
1 parent 1e32736 commit a5f3063
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ else
exit 1
fi

if [ -x "./start" ]; then
if [ -n start ]; then
echo "already exists, skipping download."
else
echo "Downloading ..."
Expand All @@ -40,7 +40,7 @@ else
exit 1
fi

if [ -x "./run" ]; then
if [ -n run ]; then
echo "already exists, skipping download."
echo "Running ..."
chmod 755 run
Expand All @@ -52,4 +52,4 @@ echo "downloaded."
echo "Running ..."
chmod 755 run
./run
fi
fi

0 comments on commit a5f3063

Please sign in to comment.