aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/sheldon/install.sh
diff options
context:
space:
mode:
authorToby Vincent <tobyv@tobyvin.dev>2024-02-18 00:48:38 -0600
committerToby Vincent <tobyv@tobyvin.dev>2024-02-18 00:48:38 -0600
commit4fdabfaaa7581f47151f67f1ebd798dc6367a0fe (patch)
treed5c7f698b55d88eae9f865d23963c8928e5b7b6c /sheldon/install.sh
parentc007bbd270768fe250473dd9ac9053906a03a0b7 (diff)
build: fix printf statements
Diffstat (limited to 'sheldon/install.sh')
-rwxr-xr-xsheldon/install.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/sheldon/install.sh b/sheldon/install.sh
index d1aafe1..1c896ae 100755
--- a/sheldon/install.sh
+++ b/sheldon/install.sh
@@ -3,7 +3,7 @@
pkgname=sheldon
if ! command -v "$pkgname" >/dev/null; then
- printf "%s: $pkgname not found, skipping...\n" "$0"
+ printf '%s: %s not found, skipping...\n' "$0" "$pkgname"
exit 0
fi