aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/build-unix.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/build-unix.sh')
-rwxr-xr-xscripts/build-unix.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build-unix.sh b/scripts/build-unix.sh
index 07f9f2f81..4fbc78413 100755
--- a/scripts/build-unix.sh
+++ b/scripts/build-unix.sh
@@ -102,7 +102,7 @@ fi
102 102
103# Check pnpm version 103# Check pnpm version
104EXPECTED_PNPM_VERSION=$(jq --raw-output .engines.pnpm ./recipes/package.json) 104EXPECTED_PNPM_VERSION=$(jq --raw-output .engines.pnpm ./recipes/package.json)
105ACTUAL_PNPM_VERSION=$(pnpm --version) 105ACTUAL_PNPM_VERSION=$(pnpm --version || true) # in case the pnpm executable itself is not present
106if [[ "$ACTUAL_PNPM_VERSION" != "$EXPECTED_PNPM_VERSION" ]]; then 106if [[ "$ACTUAL_PNPM_VERSION" != "$EXPECTED_PNPM_VERSION" ]]; then
107 npm i -gf pnpm@$EXPECTED_PNPM_VERSION 107 npm i -gf pnpm@$EXPECTED_PNPM_VERSION
108fi 108fi