We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 52c1af6 commit 72530ebCopy full SHA for 72530eb
1 file changed
ds.sh
@@ -15,20 +15,20 @@ fi
15
16
# Set the user information so Git won't complain
17
# (when not set, git exits with non-zero, raising service exception)
18
-user_name=`git config --global user.name`
+user_name=`git config user.name`
19
if [ -z "$user_name" ]; then
20
if [ -z "$GIT_USER_NAME" ]; then
21
GIT_USER_NAME="pyterrabacktyl"
22
fi
23
git config --global user.name "$GIT_USER_NAME"
24
25
26
-user_email=`git config --global user.email`
+user_email=`git config user.email`
27
if [ -z "$user_email" ]; then
28
if [ -z "$GIT_USER_EMAIL" ]; then
29
GIT_USER_EMAIL="pyterrabacktyl@devdull.lol" # Default to script author's domain.
30
31
- git config --global user.name "$GIT_USER_EMAIL"
+ git config --global user.email "$GIT_USER_EMAIL"
32
33
34
0 commit comments