aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorromkatv <roman.perepelitsa@gmail.com>2020-05-22 09:44:25 +0300
committerromkatv <roman.perepelitsa@gmail.com>2020-05-22 09:44:25 +0300
commitee44f9e112a71ef6fa5aacdf65a43862a5a89279 (patch)
tree4521119c46ee92ae57b5fc7ecdc46e263e0eec65
parent8cfe934f157a69976f55a796b65d4ed0a0344719 (diff)
Squashed 'gitstatus/' changes from 063ed450..0127fd26
0127fd26 set user.name in the test git repo 00564e95 Merge pull request #135 from Aloxaf/Aloxaf-patch-1 6003278c build: no gpg sign git-subtree-dir: gitstatus git-subtree-split: 0127fd26a0d102cc5d5b2b10e511fa99138d78e3
-rwxr-xr-xbuild5
1 files changed, 3 insertions, 2 deletions
diff --git a/build b/build
index b0caeff6..25dbb5e9 100755
--- a/build
+++ b/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*}" ]