Skip to content

Commit

Permalink
Add spacing around text output
Browse files Browse the repository at this point in the history
  • Loading branch information
jsocol committed May 31, 2024
1 parent 5009cf7 commit da47c5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/commands/compute/init.go
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ func (c *InitCommand) Exec(in io.Reader, out io.Writer) (err error) {
if pack.Metadata != nil {
clonedFrom := fastly.ToValue(pack.Metadata.ClonedFrom)
if serviceVersion > 1 {
out.Write([]byte("Service has active versions, not fetching starter kit source"))
text.Info(out, "\nService has active versions, not fetching starter kit source\n\n")
} else if gitRepositoryRegEx.MatchString(clonedFrom) {
err = spinner.Process("Initializing file structure from selected starter kit", func(*text.SpinnerWrapper) error {
err := c.ClonePackageFromEndpoint(clonedFrom, "", "")
Expand Down

0 comments on commit da47c5f

Please sign in to comment.