aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorLibravatar Vijay A <vraravam@users.noreply.github.com>2022-04-23 10:31:32 -0500
committerLibravatar Vijay A <vraravam@users.noreply.github.com>2022-04-23 10:31:32 -0500
commitd05cc15773758c8d77212c5da8f019cc567beb41 (patch)
treef7bbc3f10be9545f5033ba6fa8707a982c774138 /scripts
parentFix windows build script [skip ci] (diff)
downloadferdium-app-d05cc15773758c8d77212c5da8f019cc567beb41.tar.gz
ferdium-app-d05cc15773758c8d77212c5da8f019cc567beb41.tar.zst
ferdium-app-d05cc15773758c8d77212c5da8f019cc567beb41.zip
Handle issue when 'CLEAN' is used and so 'pnpm' itself is not present
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}