summaryrefslogtreecommitdiff
path: root/createworkdir
diff options
context:
space:
mode:
authorNicolás Reynolds <apoyosis@correo.inta.gob.ar>2011-05-16 19:14:47 -0300
committerNicolás Reynolds <apoyosis@correo.inta.gob.ar>2011-05-16 19:14:47 -0300
commitbf87a77517cb5d960865faaf820decaa338c4f63 (patch)
tree6c10ea4f2a80ae3d5df3ae08b40f6ad5c9195ed6 /createworkdir
parent56e183631d6e4e12df4990d119456dd81423938e (diff)
parent76c75b8971e4ad2f6c336c9413088e6fd0e70f69 (diff)
Merge branch 'master' of ssh://vparabola/srv/git/projects/libretools
Conflicts: libremakepkg
Diffstat (limited to 'createworkdir')
-rwxr-xr-xcreateworkdir12
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:"