summaryrefslogtreecommitdiff
path: root/cron-jobs/repo-sanity-check
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2014-06-18 11:12:18 -0400
committerLuke Shumaker <LukeShu@sbcglobal.net>2014-06-18 11:12:18 -0400
commite8f411803648f64b386dd2970b024b9ba15ba682 (patch)
treeca56d48e18c4801be9ab00bee901a830cc6e9ec9 /cron-jobs/repo-sanity-check
parentbcaa90a2e6f26191ff4aa9e0279080d1efeec3e7 (diff)
The eval+printf %q thing wasn't worth the hard-to-read code
Diffstat (limited to 'cron-jobs/repo-sanity-check')
-rwxr-xr-xcron-jobs/repo-sanity-check2
1 files changed, 1 insertions, 1 deletions
diff --git a/cron-jobs/repo-sanity-check b/cron-jobs/repo-sanity-check
index 73ec171..fadb248 100755
--- a/cron-jobs/repo-sanity-check
+++ b/cron-jobs/repo-sanity-check
@@ -24,7 +24,7 @@ for _repo in "${PKGREPOS[@]}"; do
done
# this fills the on_abs array
- printf '%q ' "${pkgname[@]}"
+ echo "${pkgname[@]}"
done
))