From 0f3c95bf34059528a1b2b25122dd3e672516d530 Mon Sep 17 00:00:00 2001 From: defelmnq Date: Fri, 4 Oct 2024 14:33:12 +0200 Subject: [PATCH] fix: change message when trying to update a workspace already up-to-date --- cli/update.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/update.go b/cli/update.go index cf4ec5e1b6c39..a123d5b7ade77 100644 --- a/cli/update.go +++ b/cli/update.go @@ -30,7 +30,7 @@ func (r *RootCmd) update() *serpent.Command { return err } if !workspace.Outdated && !parameterFlags.promptRichParameters && !parameterFlags.promptBuildOptions && len(parameterFlags.buildOptions) == 0 { - _, _ = fmt.Fprintf(inv.Stdout, "Workspace isn't outdated!\n") + _, _ = fmt.Fprintf(inv.Stdout, "Workspace is up-to-date.\n") return nil }