Skip to content

Commit

Permalink
Make install script compliant (#1469)
Browse files Browse the repository at this point in the history
This lack of space breaks the script on some less featured shells. This
commit fixes it
  • Loading branch information
mjcheetham authored Nov 7, 2023
2 parents 2365cac + c46aea7 commit df96311
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/linux/Packaging.Linux/install-from-source.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ if [ -z "$installPrefix" ]; then
fi

# Ensure install directory exists
if [! -d "$installPrefix" ]; then
if [ ! -d "$installPrefix" ]; then
echo "The folder $installPrefix does not exist"
exit
fi
Expand Down

0 comments on commit df96311

Please sign in to comment.