Compare commits

...
Sign in to create a new pull request.

1 commit

Author SHA1 Message Date
Adam Williamson
275be8f9b5 Don't mess up *global* git config in %prep (#1696417)
Thanks to bleve for spotting this, what a bad idea this was.

Signed-off-by: Adam Williamson <awilliam@redhat.com>
2019-04-04 14:04:56 -07:00

View file

@ -239,8 +239,8 @@ rm -rf .git
# Remove the .gitignore to prevent ignoring changes in some files
rm -f .gitignore
git init -q
git config --global user.email "rpmbuild"
git config --global user.name "rpmbuild"
git config user.email "rpmbuild"
git config user.name "rpmbuild"
git add .
git commit -a -m "base"