-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(examples): fix itk-wasm run argument passing
Remove extra `--`.
- Loading branch information
Showing
2 changed files
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,8 +7,8 @@ | |
"build": "npm run build:wasi", | ||
"build:wasi": "itk-wasm -b wasi-build -i itkwasm/wasi:latest-debug build", | ||
"test": "npm run test:wasi && npm run test:wasi:help", | ||
"test:wasi": "itk-wasm -b wasi-build run different-input-types.wasi.wasm -- -- ./Gourds.png label.png overlay.png", | ||
"test:wasi:help": "itk-wasm -b wasi-build run different-input-types.wasi.wasm -- -- --help" | ||
"test:wasi": "itk-wasm -b wasi-build run different-input-types.wasi.wasm -- ./Gourds.png label.png overlay.png", | ||
"test:wasi:help": "itk-wasm -b wasi-build run different-input-types.wasi.wasm -- --help" | ||
}, | ||
"author": "Matt McCormick <[email protected]>", | ||
"license": "Apache-2.0", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,9 +5,9 @@ | |
"type": "module", | ||
"scripts": { | ||
"build": "itk-wasm -i itkwasm/wasi build", | ||
"test": "itk-wasm run wasi-build/hello-pipeline.wasi.wasm -- -- cthead1.png", | ||
"test:quiet": "itk-wasm run wasi-build/hello-pipeline.wasi.wasm -- -- --quiet cthead1.png", | ||
"test:help": "itk-wasm run wasi-build/hello-pipeline.wasi.wasm -- -- --help" | ||
"test": "itk-wasm run wasi-build/hello-pipeline.wasi.wasm -- cthead1.png", | ||
"test:quiet": "itk-wasm run wasi-build/hello-pipeline.wasi.wasm -- --quiet cthead1.png", | ||
"test:help": "itk-wasm run wasi-build/hello-pipeline.wasi.wasm -- --help" | ||
}, | ||
"author": "Matt McCormick <[email protected]>", | ||
"license": "Apache-2.0", | ||
|