aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/build-unix.sh2
-rw-r--r--scripts/build-windows.ps12
2 files changed, 2 insertions, 2 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
diff --git a/scripts/build-windows.ps1 b/scripts/build-windows.ps1
index 99ea3d040..3c17d60ae 100644
--- a/scripts/build-windows.ps1
+++ b/scripts/build-windows.ps1
@@ -127,7 +127,7 @@ if ($EXPECTED_NPM_VERSION -ne $ACTUAL_NPM_VERSION) {
127 127
128# Check pnpm version 128# Check pnpm version
129$EXPECTED_PNPM_VERSION = (Get-Content recipes\package.json | ConvertFrom-Json).engines.pnpm 129$EXPECTED_PNPM_VERSION = (Get-Content recipes\package.json | ConvertFrom-Json).engines.pnpm
130$ACTUAL_PNPM_VERSION = (pnpm --version) 130$ACTUAL_PNPM_VERSION = (pnpm --version || true) # in case the pnpm executable itself is not present
131if ($ACTUAL_PNPM_VERSION -ne $EXPECTED_PNPM_VERSION) { 131if ($ACTUAL_PNPM_VERSION -ne $EXPECTED_PNPM_VERSION) {
132 npm i -gf pnpm@$EXPECTED_PNPM_VERSION 132 npm i -gf pnpm@$EXPECTED_PNPM_VERSION
133} 133}