Skip to content

Commit

Permalink
update readme and change the default value on dry-run
Browse files Browse the repository at this point in the history
  • Loading branch information
karampok authored and saschagrunert committed Mar 15, 2024
1 parent 1e8d4dc commit 3601aaa
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,16 @@ COMMANDS:
GLOBAL OPTIONS:
--all, -l run all demos (default: false)
--auto, -a run the demo in automatic mode, where every step gets executed automatically (default: false)
--auto-timeout auto, -t auto the timeout to be waited when auto is enabled (default: 3s)
--dry-run run the demo and only prints the commands (default: false)
--no-color run the demo and output to be without colors (default: false)
--auto-timeout auto, -t auto the timeout to be waited when auto is enabled (default: 1s)
--with-breakpoints breakpoint (default: false)
--continue-on-error continue if there a step fails (default: false)
--continuously, -c run the demos continuously without any end (default: false)
--immediate, -i immediately output without the typewriter animation (default: false)
--hide-descriptions, -d hide descriptions between the steps (default: false)
--immediate, -i immediately output without the typewriter animation (default: false)
--skip-steps value, -s value skip the amount of initial steps within the demo (default: 0)
--shell value define the shell that is used to execute the command(s) (default: bash)
--help, -h show help (default: false)
--version, -v print the version (default: false)
```
Expand Down
2 changes: 1 addition & 1 deletion demo.go
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ func New() *Demo {
},
&cli.BoolFlag{
Name: FlagDryRun,
Value: true,
Value: false,
Usage: "run the demo and only prints the commands",
},
&cli.BoolFlag{
Expand Down

0 comments on commit 3601aaa

Please sign in to comment.