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:
parent
99982b7dde
commit
10032dcb06
1 changed files with 2 additions and 2 deletions
|
@ -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"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue