From 61c37aa40cb19b0bb631bf5498ee517b020e1759 Mon Sep 17 00:00:00 2001 From: bubblemelon <12985181+Bubblemelon@users.noreply.github.com> Date: Tue, 24 Jul 2018 11:27:21 -0700 Subject: [PATCH] bin/refs: Clarify --create error message Fix ref create error when existing rev not specified. Closes: #1690 Approved by: jlebon --- src/ostree/ot-builtin-refs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ostree/ot-builtin-refs.c b/src/ostree/ot-builtin-refs.c index a7f77ac8..5c2214cc 100644 --- a/src/ostree/ot-builtin-refs.c +++ b/src/ostree/ot-builtin-refs.c @@ -293,7 +293,7 @@ ostree_builtin_refs (int argc, char **argv, OstreeCommandInvocation *invocation, else if (opt_create) { g_set_error (error, G_IO_ERROR, G_IO_ERROR_FAILED, - "You must specify an existing ref when creating a new ref"); + "You must specify a revision when creating a new ref"); goto out; }