Skip to content

Commit

Permalink
Fix syntax error
Browse files Browse the repository at this point in the history
Error message:

    /run.sh: line 68: syntax error near unexpected token `fi'
  • Loading branch information
j3soon committed Aug 27, 2024
1 parent 295e4f4 commit 0bead66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/docker/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ if [ "$#" -lt 1 ]; then
fi

if [ -n "$DOWNLOAD_SRC" ] || [ -n "$DOWNLOAD_DEST" ]; then
if [ -e "$DOWNLOAD_DEST" ]
if [ -e "$DOWNLOAD_DEST" ]; then
echo "File exists at '$DOWNLOAD_DEST', deleting..."
rm -rf "$DOWNLOAD_DEST"
fi
Expand Down

0 comments on commit 0bead66

Please sign in to comment.