Skip to content

Commit

Permalink
Respect DRUD_NONINTERACTIVE
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewfrench committed Oct 10, 2018
1 parent a46ebdd commit c388f7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/ddev/cmd/pull.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ func appPull(skipConfirmation bool) {
}

// If we're not performing the import step, we won't be deleting the existing db or files.
if !skipConfirmation && !skipImportArg {
if !skipConfirmation && !skipImportArg && os.Getenv("DRUD_NONINTERACTIVE") == "" {
// Only warn the user about relevant risks.
var message string
if skipDbArg && skipFilesArg {
Expand Down

0 comments on commit c388f7b

Please sign in to comment.