Skip to content

Commit

Permalink
Remove win32 from install.js
Browse files Browse the repository at this point in the history
Signed-off-by: Ricardo Zanini <1538000+ricardozanini@users.noreply.github.com>
  • Loading branch information
ricardozanini committed Nov 20, 2024
1 parent 812e6f5 commit c47048c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/sonataflow-operator/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@
"image:build": "run-script-os",
"image:build:darwin:win32": "echo 'Image build not supported on Windows and macOS'",
"image:build:linux": ". ./node_modules/@kie-tools/python-venv/venv/bin/activate && run-script-if --bool \"$(build-env containerImages.build)\" --then \"make container-build\"",
"install": "rimraf bin && go work sync && go mod tidy && node install.js && pnpm bump-version && pnpm format",
"install": "run-script-os",
"install:darwin:linux": "rimraf bin && go work sync && go mod tidy && node install.js && pnpm bump-version && pnpm format",
"install:win32": "echo 'Install not supported on Windows'",
"test": "run-script-os",
"test:darwin:linux": ". ./node_modules/@kie-tools/python-venv/venv/bin/activate && run-script-if --ignore-errors \"$(build-env tests.ignoreFailures)\" --bool \"$(build-env tests.run)\" --then \"make test\"",
"test:win32": ".\\node_modules\\@kie-tools\\python-venv\\venv\\Scripts\\Activate.bat && run-script-if --ignore-errors \"$(build-env tests.ignoreFailures)\" --bool \"$(build-env tests.run)\" --then \"make test\"",
Expand Down

0 comments on commit c47048c

Please sign in to comment.