1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-24 11:45:18 +03:00

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>
This commit is contained in:
Olliver Schinagl 2019-10-24 13:12:21 +02:00 committed by Leo
parent 99982b7dde
commit 10032dcb06

View file

@ -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"