diff options
author | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-05-22 11:13:52 -0300 |
---|---|---|
committer | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-05-22 11:13:52 -0300 |
commit | 4f1392d774c081a03d9abab0c731704880d54d4c (patch) | |
tree | abfa5f7c1dc185ddfbf2957b8094feb925a432b2 /createworkdir | |
parent | 50435a2614fe7f28e47164082e846b0a57c7f48c (diff) | |
parent | 3c53f6e6e8a9dc767680c5a53969e3d9aa3c5d81 (diff) |
Merge branch 'master' of ssh://vparabola/srv/git/projects/libretools
Conflicts:
libremessages
Diffstat (limited to 'createworkdir')
-rwxr-xr-x | createworkdir | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/createworkdir b/createworkdir index 8680215..a28d198 100755 --- a/createworkdir +++ b/createworkdir @@ -47,8 +47,7 @@ custom_config=$XDG_CONFIG_HOME/libretools/libretools.conf } -# Create the staging and repo dirs -_repodir=${WORKDIR}/repos +# Create the staging dirs for _repo in ${REPOS[@]}; do [[ ! -d ${WORKDIR}/staging/${_repo} ]] && { stdnull "mkdir -p ${WORKDIR}/staging/${_repo}" || { @@ -56,15 +55,6 @@ for _repo in ${REPOS[@]}; do exit 1 } } - - for _arch in ${ARCHES[@]}; do - [[ ! -d ${_repodir}/${_repo}/${_arch} ]] && { - stdnull "mkdir -p ${_repodir}/${_repo}/${_arch}" || { - error "Can't create ${_repodir}/${_repo}/${_arch}" - exit 1 - } - } - done done msg "Finished, your packaging dir tree looks like this now:" |