diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2018-06-04 10:17:43 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2018-06-04 10:18:19 +0000 |
commit | a8e435bd8c2800971f8b46a530b006ca2e2c2cf8 (patch) | |
tree | 8e028ea3e28377b42d38f8ddd72e1b5dc80c53c9 | |
parent | 1092f4539d6e53f2b1ef56b9285fac8b241fa244 (diff) | |
download | aports-a8e435bd8c2800971f8b46a530b006ca2e2c2cf8.tar.bz2 aports-a8e435bd8c2800971f8b46a530b006ca2e2c2cf8.tar.xz |
community/shards: fix tests when .gitconfig is missing
tests suite does git commits. if git is not ocnfigured it will error, so
we set the EMAIL environment.
-rw-r--r-- | community/shards/APKBUILD | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/community/shards/APKBUILD b/community/shards/APKBUILD index 5cc2c15583..671905762d 100644 --- a/community/shards/APKBUILD +++ b/community/shards/APKBUILD @@ -35,6 +35,7 @@ build() { check() { cd "$builddir" + export EMAIL="Test User <user@example.com>" make test_integration } |