From 10032dcb06ab7f63ca24cad5c97d2bc359c511a8 Mon Sep 17 00:00:00 2001 From: Olliver Schinagl Date: Thu, 24 Oct 2019 13:12:21 +0200 Subject: [PATCH] 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 --- testing/shunit2/APKBUILD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testing/shunit2/APKBUILD b/testing/shunit2/APKBUILD index f0fd60851c1..74eab1ddf81 100644 --- a/testing/shunit2/APKBUILD +++ b/testing/shunit2/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Olliver Schinagl 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"