diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-05-31 19:34:23 -0600 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-06-05 19:53:19 -0600 |
commit | 04d1c7f81eff66e646880332ece2b619c798b71f (patch) | |
tree | d488d520e2107901fdcb563f0348b1df3db84f00 /src | |
parent | 06f0fa6d1dfee7b8d9248d75b36919fae10f4b10 (diff) |
createworkdir: properly quote array
Diffstat (limited to 'src')
-rwxr-xr-x | src/abslibre-tools/createworkdir | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/abslibre-tools/createworkdir b/src/abslibre-tools/createworkdir index b443c08..2fdf107 100755 --- a/src/abslibre-tools/createworkdir +++ b/src/abslibre-tools/createworkdir @@ -34,7 +34,7 @@ custom_config=$XDG_CONFIG_HOME/libretools/libretools.conf } -for _repo in ${REPOS[@]}; do # Create the staging dirs +for _repo in "${REPOS[@]}"; do # Create the staging dirs [[ ! -d ${WORKDIR}/staging/${_repo} ]] && { mkdir -p ${WORKDIR}/staging/${_repo} || { |