patch: fix missing windows dependency

This commit is contained in:
Edwin Joassart 2024-05-30 14:33:35 +02:00
parent 52144f4a6e
commit 98db4df0dc

View File

@ -57,7 +57,7 @@ runs:
npm ci
# 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
fi