summaryrefslogtreecommitdiff
path: root/test/test.d
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 /test/test.d
parentbcaa90a2e6f26191ff4aa9e0279080d1efeec3e7 (diff)
The eval+printf %q thing wasn't worth the hard-to-read code
Diffstat (limited to 'test/test.d')
-rwxr-xr-xtest/test.d/create-filelists.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test.d/create-filelists.sh b/test/test.d/create-filelists.sh
index 1126972..b5ec5c8 100755
--- a/test/test.d/create-filelists.sh
+++ b/test/test.d/create-filelists.sh
@@ -62,7 +62,7 @@ testCreateSplitFileLists() {
../db-update
for pkgbase in "${pkgs[@]}"; do
- eval "pkgnames=($(source "${TMP}/svn-packages-copy/${pkgbase}/trunk/PKGBUILD"; printf '%q ' "${pkgname[@]}"))"
+ pkgnames=($(source "${TMP}/svn-packages-copy/${pkgbase}/trunk/PKGBUILD"; echo "${pkgname[@]}"))
for pkgname in "${pkgnames[@]}"; do
for arch in "${arches[@]}"; do
if ! bsdtar -xOf "${FTP_BASE}/extra/os/${arch}/extra${FILESEXT}" | grep "usr/bin/${pkgname}" &>/dev/null; then