555 (read+execute) seem to be the right permission level to run.

This commit is contained in:
Zeioth 2022-04-11 01:45:19 +02:00
parent 6b8b47cdc9
commit 055871ec7a
2 changed files with 2 additions and 2 deletions

View file

@ -31,5 +31,5 @@ pkgver() {
package() { package() {
# Note: 'install' is a chmod+cp one-liner command by GNU # Note: 'install' is a chmod+cp one-liner command by GNU
mkdir -p "$pkgdir"/usr/bin mkdir -p "$pkgdir"/usr/bin
install -m 111 "${srcdir}"/wofi-calc.sh "$pkgdir"/usr/bin/wofi-calc install -m 555 "${srcdir}"/wofi-calc.sh "$pkgdir"/usr/bin/wofi-calc
} }

View file

@ -32,5 +32,5 @@ pkgver() {
package() { package() {
# Note: 'install' is a chmod+cp one-liner command by GNU # Note: 'install' is a chmod+cp one-liner command by GNU
mkdir -p "$pkgdir"/usr/bin mkdir -p "$pkgdir"/usr/bin
install -m 111 "${srcdir}"/wofi-calc.sh "$pkgdir"/usr/bin/wofi-calc install -m 555 "${srcdir}"/wofi-calc.sh "$pkgdir"/usr/bin/wofi-calc
} }