diff options
author | Nicolás Reynolds <apoyosis@correo.inta.gob.ar> | 2012-11-05 16:48:28 -0300 |
---|---|---|
committer | Nicolás Reynolds <apoyosis@correo.inta.gob.ar> | 2012-11-05 16:48:28 -0300 |
commit | 48696038cec8f4cef0152d356b05d40c585a20b5 (patch) | |
tree | 60dd976565e311d39daa8eb650efd5a88bada0f2 | |
parent | 4e5c5c74108718b08a021991b314d6a68d829544 (diff) |
Skip unexistent repos
-rwxr-xr-x | toru-path | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -22,6 +22,8 @@ fi fullrepos=() for (( i = ${#REPOS[@]}-1 ; i >= 0 ; i-- )); do ${VERBOSE} && msg "Processing [%s]" ${REPOS[$i]} + + [ -d "${ABSROOT}${REPOS[$i]}" ] && \ fullrepos+=("${ABSROOT}${REPOS[$i]}") done pkgbuilds=($(get_pkgbuilds ${fullrepos[@]})) |