Skip to content

Commit

Permalink
chore(cli): update init log with correct app name (#5254)
Browse files Browse the repository at this point in the history
Fix this `Environment test does not yet exist in application ; initializing it.`


By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the Apache 2.0 License.
  • Loading branch information
iamhopaul123 authored Aug 29, 2023
1 parent 054dc0d commit 48e3050
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/pkg/cli/init.go
Original file line number Diff line number Diff line change
Expand Up @@ -581,7 +581,7 @@ func (o *initOpts) askEnvNameAndMaybeInit() error {
return err
}

log.Infof("Environment %s does not yet exist in application %s; initializing it.\n", o.initVars.envName, o.initVars.appName)
log.Infof("Environment %s does not yet exist in application %s; initializing it.\n", o.initVars.envName, *o.appName)
if err := o.initEnvCmd.Execute(); err != nil {
return err
}
Expand Down

0 comments on commit 48e3050

Please sign in to comment.