diff options
author | Olliver Schinagl <oliver@schinagl.nl> | 2019-10-24 13:12:21 +0200 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2019-10-24 08:25:00 -0300 |
commit | 10032dcb06ab7f63ca24cad5c97d2bc359c511a8 (patch) | |
tree | 8f58cbc32ededcb13c5d31035b9ffad17766a389 | |
parent | 99982b7dde8f6e09281daa6cf30a3594ca421936 (diff) | |
download | aports-10032dcb06ab7f63ca24cad5c97d2bc359c511a8.tar.bz2 aports-10032dcb06ab7f63ca24cad5c97d2bc359c511a8.tar.xz |
testing/shunit2: Also allow users to execute
Due to a silly mistake, the permissions where set incorrectly on the
shunit2 binary. Only root was able to run shunit2, this of course is not
intended. Fix the permissions to allow all users to be able to execute
the binary.
Signed-off-by: Olliver Schinagl <oliver@schinagl.nl>
-rw-r--r-- | testing/shunit2/APKBUILD | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testing/shunit2/APKBUILD b/testing/shunit2/APKBUILD index f0fd60851c..74eab1ddf8 100644 --- a/testing/shunit2/APKBUILD +++ b/testing/shunit2/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Olliver Schinagl <oliver@schinagl.nl> pkgname="shunit2" pkgver="2.1.7" -pkgrel=0 +pkgrel=1 pkgdesc="A xUnit based unit test framework for Bourne based shell scripts." url="https://github.com/kward/shunit2/" arch="noarch" @@ -18,7 +18,7 @@ check() { } package() { - install -D -m 644 -t "${pkgdir}/usr/bin/" \ + install -D -m 755 -t "${pkgdir}/usr/bin/" \ "shunit2" install -D -m 644 -t "${pkgdir}/usr/share/doc/${pkgname}/" \ "README.md" |