diff options
author | romkatv <roman.perepelitsa@gmail.com> | 2020-05-22 09:44:25 +0300 |
---|---|---|
committer | romkatv <roman.perepelitsa@gmail.com> | 2020-05-22 09:44:25 +0300 |
commit | 936b0d6dea09059d2d45fde17bc4d912b29e8703 (patch) | |
tree | 53565ec5ba65ba7cf47164992cca5834d3e43d90 /gitstatus/build | |
parent | c713ded9e76032f90014bc6829165d0dd69d28b3 (diff) | |
parent | ee44f9e112a71ef6fa5aacdf65a43862a5a89279 (diff) |
Merge commit 'ee44f9e112a71ef6fa5aacdf65a43862a5a89279'v1.10.1
Diffstat (limited to 'gitstatus/build')
-rwxr-xr-x | gitstatus/build | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gitstatus/build b/gitstatus/build index b0caeff6..25dbb5e9 100755 --- a/gitstatus/build +++ b/gitstatus/build @@ -267,9 +267,10 @@ app="$outdir"/usrbin/"$appname" command strip "$app".tmp command mkdir -- "$workdir"/repo -command git -C "$workdir"/repo init -- +command git -C "$workdir"/repo init +command git -C "$workdir"/repo config user.name "Your Name" command git -C "$workdir"/repo config user.email "you@example.com" -command git -C "$workdir"/repo commit --allow-empty --allow-empty-message -m '' +command git -C "$workdir"/repo commit --allow-empty --allow-empty-message --no-gpg-sign -m '' resp="$(printf "hello\037$workdir/repo\036" | "$app".tmp)" [ -n "$resp" -a -z "${resp##hello*1*$workdir/repo*master*}" ] |