summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkj-sh6042024-11-30 05:27:26 -0500
committerkj-sh6042024-11-30 05:27:26 -0500
commit1e1c6791a4fe7b17157449aad766901c7f945542 (patch)
treee3f0044d8715aac16eab414dd4805a58d6636f16
parent2ec1318a2cc4b8917fe6f3e62e0fa22d401507d1 (diff)
refactor: use `#!/bin/sh` for the `dash` users 😉
-rw-r--r--imagemagick-compat/PKGBUILD2
1 files changed, 1 insertions, 1 deletions
diff --git a/imagemagick-compat/PKGBUILD b/imagemagick-compat/PKGBUILD
index c96f267..084f9b4 100644
--- a/imagemagick-compat/PKGBUILD
+++ b/imagemagick-compat/PKGBUILD
@@ -128,7 +128,7 @@ package() {
# Add a wrapper script for "convert" to use "magick convert"
install -Dm755 /dev/stdin "$pkgdir/usr/bin/convert" <<END
-#!/bin/bash
+#!/bin/sh
exec magick "\$@"
END