Skip to content

Commit

Permalink
refactor: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
maxwelbm committed May 8, 2024
1 parent c1b9e02 commit 046eccd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pkg/cmd/deploy/deploy.go
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,9 @@ func (cmd *DeployCmd) Run(f *cmdutil.Factory) error {
}

conf.Domain.Url = utils.Concat("https://", domainName)
cmd.WriteAzionJsonContent(conf)
if err := cmd.WriteAzionJsonContent(conf); err != nil {
return err
}

logger.FInfo(cmd.F.IOStreams.Out, msg.DeploySuccessful)
logger.FInfo(cmd.F.IOStreams.Out, fmt.Sprintf(msg.DeployOutputDomainSuccess, conf.Domain.Url))
Expand Down

0 comments on commit 046eccd

Please sign in to comment.