Skip to content

Commit

Permalink
fix wrong bash if-else syntax (#1752)
Browse files Browse the repository at this point in the history
  • Loading branch information
mjcheetham authored Oct 29, 2024
2 parents aff97de + 557937a commit 749e287
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/linux/Packaging.Linux/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ esac
done

# Ensure install prefix exists
if [! -d "$INSTALL_PREFIX" ]; then
if [ ! -d "$INSTALL_PREFIX" ]; then
mkdir -p "$INSTALL_PREFIX"
fi

Expand Down

0 comments on commit 749e287

Please sign in to comment.