Skip to content

Commit

Permalink
fix: require docker for nitric down (#753)
Browse files Browse the repository at this point in the history
Fixes an issue where a pulumi refresh requires docker
  • Loading branch information
davemooreuws authored Jul 25, 2024
1 parent 2a1ee8f commit 54d19ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/stack.go
Original file line number Diff line number Diff line change
Expand Up @@ -627,7 +627,7 @@ func init() {
tui.CheckErr(AddOptions(stackUpdateCmd, false))

// Delete Stack (Down)
stackCmd.AddCommand(tui.AddDependencyCheck(stackDeleteCmd, tui.Pulumi))
stackCmd.AddCommand(tui.AddDependencyCheck(stackDeleteCmd, tui.Pulumi, tui.Docker))
stackDeleteCmd.Flags().BoolVarP(&confirmDown, "yes", "y", false, "confirm the destruction of the stack")
tui.CheckErr(AddOptions(stackDeleteCmd, false))

Expand Down

0 comments on commit 54d19ca

Please sign in to comment.