summaryrefslogtreecommitdiffstats
path: root/scripts/build-windows.ps1
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/build-windows.ps1
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/build-windows.ps1')
-rw-r--r--scripts/build-windows.ps12
1 files changed, 1 insertions, 1 deletions
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}