diff --git a/cmd/root/pull.go b/cmd/root/pull.go index 166a78c7..b605dbff 100644 --- a/cmd/root/pull.go +++ b/cmd/root/pull.go @@ -30,7 +30,7 @@ func NewPullCmd() *cobra.Command { func runPullCommand(registryRef string) error { slog.Debug("Starting pull", "registry_ref", registryRef) - fmt.Println("Pulling agent ", registryRef) + fmt.Println("Pulling agent", registryRef) var opts []crane.Option _, err := remote.Pull(registryRef, opts...) diff --git a/cmd/root/run.go b/cmd/root/run.go index 4902c937..5b0cee5c 100644 --- a/cmd/root/run.go +++ b/cmd/root/run.go @@ -161,7 +161,7 @@ func doRunCommand(ctx context.Context, args []string, exec bool) error { // Treat as an OCI image reference. Try local store first, otherwise pull then load. a, err := fromStore(agentFilename) if err != nil { - fmt.Println("Pulling agent ", agentFilename) + fmt.Println("Pulling agent", agentFilename) if _, pullErr := remote.Pull(agentFilename); pullErr != nil { return fmt.Errorf("failed to pull OCI image %s: %w", agentFilename, pullErr) }