Skip to content

Commit

Permalink
fix(run): remove wait on dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ekristen committed Aug 26, 2024
1 parent d9647b1 commit 2565367
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions pkg/commands/run/command.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,12 @@ func execute(c *cli.Context) error {
logrus.Trace("preparing to run nuke")

params := &libnuke.Parameters{
Force: c.Bool("no-prompt"),
ForceSleep: c.Int("prompt-delay"),
Quiet: c.Bool("quiet"),
NoDryRun: c.Bool("no-dry-run"),
Includes: c.StringSlice("include"),
Excludes: c.StringSlice("exclude"),
WaitOnDependencies: true,
Force: c.Bool("no-prompt"),
ForceSleep: c.Int("prompt-delay"),
Quiet: c.Bool("quiet"),
NoDryRun: c.Bool("no-dry-run"),
Includes: c.StringSlice("include"),
Excludes: c.StringSlice("exclude"),
}

parsedConfig, err := libconfig.New(libconfig.Options{
Expand Down

0 comments on commit 2565367

Please sign in to comment.