Skip to content

Commit 557937a

Browse files
committed
fix wrong bash if-else syntax
1 parent ae009e1 commit 557937a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/linux/Packaging.Linux/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ esac
4141
done
4242

4343
# Ensure install prefix exists
44-
if [! -d "$INSTALL_PREFIX" ]; then
44+
if [ ! -d "$INSTALL_PREFIX" ]; then
4545
mkdir -p "$INSTALL_PREFIX"
4646
fi
4747

0 commit comments

Comments
 (0)