Skip to content

Commit 842ac42

Browse files
committed
Fixed --workflow flag, param isn't passed with dashes
1 parent 3dce26d commit 842ac42

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

new_samples/hello_world/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -68,16 +68,16 @@ Click on `cadence-samples` domain in cadence-web to view your workflow.
6868
List workflows using the following command:
6969

7070
```bash
71-
cadence --env development --domain cadence-samples --workflow list
71+
cadence --env development --domain cadence-samples workflow list
7272
```
7373

7474
You can view an individual workflow by using the following command:
7575

7676
```bash
7777
cadence --env development \
7878
--domain cadence-samples \
79-
--workflow describe \
80-
--wid <workflow_id>
79+
workflow describe \
80+
--wid <workflow_id>
8181
```
8282

8383
* `workflow` is the noun to run commands within workflow scope
@@ -90,8 +90,8 @@ To view the entire history of the workflow, use the following command:
9090
```bash
9191
cadence --env development \
9292
--domain cadence-samples \
93-
--workflow show \
94-
--wid <workflow_id>
93+
workflow show \
94+
--wid <workflow_id>
9595
```
9696

9797
## References

new_samples/hello_world/generator/README_specific.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,16 +37,16 @@ Click on `cadence-samples` domain in cadence-web to view your workflow.
3737
List workflows using the following command:
3838

3939
```bash
40-
cadence --env development --domain cadence-samples --workflow list
40+
cadence --env development --domain cadence-samples workflow list
4141
```
4242

4343
You can view an individual workflow by using the following command:
4444

4545
```bash
4646
cadence --env development \
4747
--domain cadence-samples \
48-
--workflow describe \
49-
--wid <workflow_id>
48+
workflow describe \
49+
--wid <workflow_id>
5050
```
5151

5252
* `workflow` is the noun to run commands within workflow scope
@@ -59,6 +59,6 @@ To view the entire history of the workflow, use the following command:
5959
```bash
6060
cadence --env development \
6161
--domain cadence-samples \
62-
--workflow show \
63-
--wid <workflow_id>
62+
workflow show \
63+
--wid <workflow_id>
6464
```

0 commit comments

Comments
 (0)