summaryrefslogtreecommitdiff
path: root/any-to-ours
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2014-06-18 13:45:10 -0400
committerLuke Shumaker <LukeShu@sbcglobal.net>2014-06-18 13:45:10 -0400
commit386c2d00249eb244bbcc9a173a64f9435b70180a (patch)
tree8930f8ccf7588bf2a6c256810d4c4e0ced3bf1a4 /any-to-ours
parentba575a4e64be157eeae1028ed86b29cb0042f41b (diff)
Use printf formatters instead of string interpolation.
I used this command to find them: egrep -r --exclude-dir={test,.git} '(plain|msg|msg2|warning|error|stat_busy|stat_done|abort|die)\s+"?[^"]*\$'
Diffstat (limited to 'any-to-ours')
-rwxr-xr-xany-to-ours8
1 files changed, 4 insertions, 4 deletions
diff --git a/any-to-ours b/any-to-ours
index c203a6e..d98cc5d 100755
--- a/any-to-ours
+++ b/any-to-ours
@@ -22,7 +22,7 @@ BASEARCH='x86_64'
# Traverse all Arch repos
for _repo in "${ARCHREPOS[@]}"; do
- msg "Processing ${_repo}..."
+ msg "Processing %s..." "${_repo}"
# Find 'any' packages
# This is hardcoded but it could release other arches...
@@ -31,12 +31,12 @@ for _repo in "${ARCHREPOS[@]}"; do
-printf "%f "))
if [ ${#PKGS[@]} -eq 0 ]; then
- msg2 "No 'any' packages here"
+ msg2 "No '%s' packages here" any
continue
fi
for _arch in "${OURARCHES[@]}"; do
- msg2 "Syncing ${_arch}..."
+ msg2 "Syncing %s..." "${_arch}"
# Sync 'any' only and extract the synced packages
SYNCED=($(
@@ -54,7 +54,7 @@ for _repo in "${ARCHREPOS[@]}"; do
continue
fi
- msg2 "Synced ${#SYNCED[@]} packages: ${SYNCED[@]}"
+ msg2 "Synced %d packages: %s" "${#SYNCED[@]}" "${SYNCED[*]}"
msg2 "Adding to db..."