We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c67f45e commit b64b6abCopy full SHA for b64b6ab
cmd/execute/execute.go
@@ -265,6 +265,9 @@ func run(cfg *Config) error {
265
if err != nil {
266
return fmt.Errorf("failed to create run: %w", err)
267
}
268
+ // The extra space aligns the Run ID with other fields displayed by the run watcher
269
+ // The run ID is printed here because it should be displayed whether the run is watched or not
270
+ fmt.Printf("%-18s %v\n", "Run ID:", *run.ID)
271
272
if cfg.DownloadAllNodes || len(cfg.NodesToDownload) > 0 {
273
cfg.Watch = true
0 commit comments