-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #17659 from cevich/fix_bud_git_config
Cirrus: Fix git config permission denied
- Loading branch information
Showing
1 changed file
with
7 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -155,7 +155,13 @@ if [[ -n $do_checkout ]]; then | |
# under automation, nobody cares about this condition or message, because | ||
# the environment is disposable. | ||
if [[ "$CI" == "true" ]]; then | ||
git config --system --add safe.directory $buildah_dir | ||
( | ||
_gc='git config --global' | ||
set -x | ||
$_gc user.email "[email protected]" | ||
$_gc user.name "Testy McTestface" | ||
$_gc --add safe.directory $buildah_dir | ||
) | ||
fi | ||
|
||
cd $buildah_dir | ||
|