summaryrefslogtreecommitdiff
path: root/checkpkg.in
diff options
context:
space:
mode:
Diffstat (limited to 'checkpkg.in')
-rw-r--r--checkpkg.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/checkpkg.in b/checkpkg.in
index ef46399..eb95745 100644
--- a/checkpkg.in
+++ b/checkpkg.in
@@ -39,7 +39,7 @@ for _pkgname in "${pkgname[@]}"; do
elif [[ -f "$PKGDEST/$pkgfile" ]]; then
ln -s "$PKGDEST/$pkgfile" "$TEMPDIR/$pkgfile"
else
- die "File \"$pkgfile\" doesn't exist"
+ die "File \"%s\" doesn't exist" "$pkgfile"
fi
pkgurl=$(pacman -Spdd --print-format '%l' --noconfirm "$_pkgname")
@@ -78,8 +78,8 @@ for _pkgname in "${pkgname[@]}"; do
echo "${i}: " "$(objdump -p "$i" | grep SONAME)"
done
else
- msg "No soname differences for $_pkgname."
+ msg "No soname differences for %s." "$_pkgname"
fi
done
-msg "Files saved to $TEMPDIR"
+msg "Files saved to %s" "$TEMPDIR"