Merge pull request #4238 from balena-io/fix-win-2

patch: fix missing windows dependency
This commit is contained in:
Edwin Joassart 2024-05-30 16:59:45 +02:00 committed by GitHub
commit a5dac57b09
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -57,8 +57,8 @@ runs:
npm ci npm ci
# as the shrinkwrap might have been done on mac/linux, this is ensure the package is there for windows # as the shrinkwrap might have been done on mac/linux, this is ensure the package is there for windows
if [[runner.os == 'Windows']]; then if [[ "$RUNNER_OS" == "Windows" ]]; then
npm install winusb-driver-generator npm i -D winusb-driver-generator
fi fi
npm run lint npm run lint