patch: fix missing windows dependency

This commit is contained in:
Edwin Joassart 2024-05-30 14:56:07 +02:00
parent 98db4df0dc
commit d28719daf2
No known key found for this signature in database
GPG Key ID: A56BE0A21AD56A40

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