diff options
author | Michael Forney <mforney@mforney.org> | 2022-10-04 18:32:53 +0000 |
---|---|---|
committer | Michael Forney <mforney@mforney.org> | 2022-10-04 18:32:53 +0000 |
commit | 053e1f71c4a7f270cf7b8b09a4396edce96d7031 (patch) | |
tree | 6364ebb9c44dbcca210026e005761b2188025068 | |
parent | 4628d9418db7932f3bbbad2c8007a021d3885a3a (diff) |
git: clear status on whoami success
Otherwise, not taking the if branch will leave a failing status for
the caller.
-rw-r--r-- | sys/lib/git/common.rc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/lib/git/common.rc b/sys/lib/git/common.rc index 1b8172f98..dd434265a 100644 --- a/sys/lib/git/common.rc +++ b/sys/lib/git/common.rc @@ -61,6 +61,7 @@ fn whoami{ name=$user if(~ $email '') email=$user@$sysname + status='' } # merge1 out ours base theirs |