diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2014-01-08 17:40:26 -0500 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2014-01-08 21:19:01 -0500 |
commit | 0811dea8b9c695ed9e67b22d389142956bd1cdd8 (patch) | |
tree | 8d300e5cf517ea53f72f22cbf6a3101c1667f2e7 /config | |
parent | 1bcc49058febc7e2723c455879da6ff3b9ca6576 (diff) |
Fix quoting on arrays.
Diffstat (limited to 'config')
-rw-r--r-- | config | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -12,7 +12,7 @@ USERREPOS=('~smv' '~xihh' '~brendan' '~lukeshu' '~emulatorman' '~aurelien' '~jor # Community project repos PROJREPOS=('pcr' 'kernels' 'cross' 'java' 'java-ugly' 'nonprism') # Remote repos -PKGREPOS=(${ARCHREPOS[@]} ${OURREPOS[@]} ${USERREPOS[@]} ${PROJREPOS[@]}) +PKGREPOS=("${ARCHREPOS[@]}" "${OURREPOS[@]}" "${USERREPOS[@]}" "${PROJREPOS[@]}") PKGPOOL='pool/packages' SRCPOOL='sources/packages' |