Skip to content

Commit df96311

Browse files
authored
Make install script compliant (#1469)
This lack of space breaks the script on some less featured shells. This commit fixes it
2 parents 2365cac + c46aea7 commit df96311

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/linux/Packaging.Linux/install-from-source.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ if [ -z "$installPrefix" ]; then
2626
fi
2727

2828
# Ensure install directory exists
29-
if [! -d "$installPrefix" ]; then
29+
if [ ! -d "$installPrefix" ]; then
3030
echo "The folder $installPrefix does not exist"
3131
exit
3232
fi

0 commit comments

Comments
 (0)