Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 0ef5340

Browse files
authored
fix: change message when trying to update a workspace already up-to-date (#14975)
Related to #14940 - We replace the wording from Workspace isn't outdated to Workspace is up-to-date when the workspace already is up-to-date.
1 parent ab6cb1a commit 0ef5340

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cli/update.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ func (r *RootCmd) update() *serpent.Command {
3030
return err
3131
}
3232
if !workspace.Outdated && !parameterFlags.promptRichParameters && !parameterFlags.promptBuildOptions && len(parameterFlags.buildOptions) == 0 {
33-
_, _ = fmt.Fprintf(inv.Stdout, "Workspace isn't outdated!\n")
33+
_, _ = fmt.Fprintf(inv.Stdout, "Workspace is up-to-date.\n")
3434
return nil
3535
}
3636

0 commit comments

Comments
 (0)