Skip to content

Commit

Permalink
Update cli/cli_app.go
Browse files Browse the repository at this point in the history
Co-authored-by: Yevgeniy Brikman <[email protected]>
  • Loading branch information
yorinasub17 and brikis98 authored Feb 2, 2021
1 parent 5095988 commit b30e046
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/cli_app.go
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ func checkDeprecated(command string, terragruntOptions *options.TerragruntOption
deprecationHandler, deprecated := deprecatedCommands[command]
if deprecated {
newOptions, newCommand, newCommandFriendly := deprecationHandler(terragruntOptions)
terragruntOptions.Logger.Printf("%s is deprecated; running %s instead.\n", command, newCommandFriendly)
terragruntOptions.Logger.Printf("'%s' is deprecated. Running '%s' instead. Please update your workflows to use '%s', as '%s' may be removed in the future!\n", command, newCommandFriendly, newCommandFriendly, command)
return newOptions, newCommand
}
return terragruntOptions, command
Expand Down

0 comments on commit b30e046

Please sign in to comment.