index : devtools32 | |
Archlinux32 fork of devtools | gitolite user |
summaryrefslogtreecommitdiff |
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-08-16 01:57:39 -0400 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-08-16 01:57:39 -0400 |
commit | fabc14e262414debb6bbd562e6a6a37afa2cce79 (patch) | |
tree | c569d6edad57db9692fec72383ccbb5687b1d76d /checkpkg.in | |
parent | 06e3de14a9d82b456176c1966919e0bbd457da69 (diff) | |
parent | 8dbb02de4f50aeb05c5df2ef8d9c8cf394b4f9ac (diff) |
-rw-r--r-- | checkpkg.in | 4 |
diff --git a/checkpkg.in b/checkpkg.in index 95bf049..8e0f574 100644 --- a/checkpkg.in +++ b/checkpkg.in @@ -41,13 +41,13 @@ for _pkgname in "${pkgname[@]}"; do pkgurl=$(pacman -Spdd --print-format '%l' --noconfirm "$_pkgname") if [[ $? -ne 0 ]]; then - die "Couldn't download previous package for $_pkgname." + die "Couldn't download previous package for %s." "$_pkgname" fi oldpkg=${pkgurl##*://*/} if [[ ${oldpkg##*/} = ${pkgfile##*/} ]]; then - die "The built package ($_pkgname) is the one in the repo right now!" + die "The built package (%s) is the one in the repo right now!" "$_pkgname" fi if [[ ! -f $oldpkg ]]; then |