diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2014-06-18 11:12:18 -0400 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2014-06-18 11:12:18 -0400 |
commit | e8f411803648f64b386dd2970b024b9ba15ba682 (patch) | |
tree | ca56d48e18c4801be9ab00bee901a830cc6e9ec9 /cron-jobs/repo-sanity-check | |
parent | bcaa90a2e6f26191ff4aa9e0279080d1efeec3e7 (diff) |
The eval+printf %q thing wasn't worth the hard-to-read code
Diffstat (limited to 'cron-jobs/repo-sanity-check')
-rwxr-xr-x | cron-jobs/repo-sanity-check | 2 |
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 )) |