diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2017-05-12 20:51:49 +0200 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2017-05-12 20:51:49 +0200 |
commit | f3f8923c6af378936a5a0ff33aab3328c203a9d7 (patch) | |
tree | 947d0b903ebfd563a81c2e735b1a2a3b23f95dd0 /community/gitea | |
parent | 8cf0b5f52f58dd0dd9ddf2e56248454054b12fb5 (diff) | |
download | aports-f3f8923c6af378936a5a0ff33aab3328c203a9d7.tar.bz2 aports-f3f8923c6af378936a5a0ff33aab3328c203a9d7.tar.xz |
community/gitea: dont hide error messages in check
Diffstat (limited to 'community/gitea')
-rw-r--r-- | community/gitea/APKBUILD | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/community/gitea/APKBUILD b/community/gitea/APKBUILD index 0cc5dce072..08db579551 100644 --- a/community/gitea/APKBUILD +++ b/community/gitea/APKBUILD @@ -73,7 +73,7 @@ package() { check() { # basic check to see if the app works - "$builddir"/$pkgname help > /dev/null 2>&1 || return 1 + "$builddir"/$pkgname help > /dev/null || return 1 } sha512sums="b7c4102da85e57d49997f4319e13d10c5f30dfbb5ef51a34e3a2b073c7160ae500a748f25133c30633eac3db320c41e76dc642e83e9f7e466445bdc2d0c0beb5 gitea-1.1.1.tar.gz |