diff --git a/cmd/ghcs/create.go b/cmd/ghcs/create.go index bb2e18eff..c3e8a24a1 100644 --- a/cmd/ghcs/create.go +++ b/cmd/ghcs/create.go @@ -83,7 +83,9 @@ func Create() error { return fmt.Errorf("error creating codespace: %v", err) } - log.Printf("Codespace created: %s\n", codespace.Name) + log.Printf("Codespace created: ") + + fmt.Fprintln(os.Stdout, codespace.Name) return nil }