diff options
author | Junio C Hamano <gitster@pobox.com> | 2016-01-04 14:02:58 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-01-04 14:02:58 -0800 |
commit | e0025275827ea57a3a14aecfde1cd3812e70652a (patch) | |
tree | 824e03b7713fd09706ee7248068e2575a1b20c52 /builtin | |
parent | e54d0f5a025e124b27aab3381711721b73d5b68e (diff) | |
parent | f91b2732b3df6bae21512af58e0cfccbd5301331 (diff) | |
download | git-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.c | 2 |
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); |