Skip to content

Commit 50cad1d

Browse files
authored
Update deploy.md - Correct the file name in the command to match the example. (#231)
If you want to try to publish the Counter application with default settings, the wasm file name must be "my_counter***" not "my-counter***" corresponding to the file name that was built in target/wasm32-unknown-unknown/release/
1 parent 367e8d5 commit 50cad1d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/developers/backend/deploy.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ application while also specifying:
1919

2020
```bash
2121
linera publish-and-create \
22-
target/wasm32-unknown-unknown/release/my-counter_{contract,service}.wasm \
22+
target/wasm32-unknown-unknown/release/my_counter_{contract,service}.wasm \
2323
--json-argument "42"
2424
```
2525

@@ -42,7 +42,7 @@ specifying:
4242

4343
```bash
4444
linera publish-and-create \
45-
target/wasm32-unknown-unknown/release/my-counter_{contract,service}.wasm \
45+
target/wasm32-unknown-unknown/release/my_counter_{contract,service}.wasm \
4646
--json-argument "42"
4747
```
4848

0 commit comments

Comments
 (0)