Skip to content

Commit

Permalink
fix: git username
Browse files Browse the repository at this point in the history
  • Loading branch information
jdx committed Jan 27, 2018
1 parent 435a96d commit 11b4b58
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .circleci/setup_git
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ set -e
if [[ ! -z "$GIT_EMAIL" ]] & [[ ! -z "$GIT_USERNAME" ]]; then
git config --global push.default simple
git config --global user.email "$GIT_EMAIL"
git config --global user.user "$GIT_USERNAME"
git config --global user.name "$GIT_USERNAME"
fi

git submodule sync
Expand Down
2 changes: 1 addition & 1 deletion templates/scripts/setup_git
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ set -e
if [[ ! -z "$GIT_EMAIL" ]] & [[ ! -z "$GIT_USERNAME" ]]; then
git config --global push.default simple
git config --global user.email "$GIT_EMAIL"
git config --global user.user "$GIT_USERNAME"
git config --global user.name "$GIT_USERNAME"
fi

git submodule sync
Expand Down

0 comments on commit 11b4b58

Please sign in to comment.