summaryrefslogtreecommitdiff
path: root/builtin
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2016-01-04 14:02:58 -0800
committerJunio C Hamano <gitster@pobox.com>2016-01-04 14:02:58 -0800
commite0025275827ea57a3a14aecfde1cd3812e70652a (patch)
tree824e03b7713fd09706ee7248068e2575a1b20c52 /builtin
parente54d0f5a025e124b27aab3381711721b73d5b68e (diff)
parentf91b2732b3df6bae21512af58e0cfccbd5301331 (diff)
downloadgit-e0025275827ea57a3a14aecfde1cd3812e70652a.tar.gz
Merge branch 'jk/symbolic-ref-maint' into maint
"git symbolic-ref" forgot to report a failure with its exit status. * jk/symbolic-ref-maint: t1401: test reflog creation for git-symbolic-ref symbolic-ref: propagate error code from create_symref()
Diffstat (limited to 'builtin')
-rw-r--r--builtin/symbolic-ref.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/symbolic-ref.c b/builtin/symbolic-ref.c
index ce0fde705c..9c29a64e43 100644
--- a/builtin/symbolic-ref.c
+++ b/builtin/symbolic-ref.c
@@ -67,7 +67,7 @@ int cmd_symbolic_ref(int argc, const char **argv, const char *prefix)
if (!strcmp(argv[0], "HEAD") &&
!starts_with(argv[1], "refs/"))
die("Refusing to point HEAD outside of refs/");
- create_symref(argv[0], argv[1], msg);
+ ret = !!create_symref(argv[0], argv[1], msg);
break;
default:
usage_with_options(git_symbolic_ref_usage, options);