diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2014-01-16 09:44:44 -0500 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2014-01-16 09:44:44 -0500 |
commit | c76ecd8ae9425f0717f30cdac8e47485c887bcb6 (patch) | |
tree | 12d31e73cfaffa6578651b4d0843dd3ba867bcc4 /cron-jobs | |
parent | cad2d8b7075cb255f76e79c12c23acee94074514 (diff) | |
parent | 0f9c53d616116cac705b01bfabb2186506aac52a (diff) |
Merge branch 'master' into cleanup
Conflicts:
cron-jobs/ftpdir-cleanup
cron-jobs/sourceballs
db-functions
db-move
db-remove
db-sync
db-update
get-repos
local_config
testing2x
yf-update
Diffstat (limited to 'cron-jobs')
-rwxr-xr-x | cron-jobs/sourceballs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cron-jobs/sourceballs b/cron-jobs/sourceballs index 329e135..d5bf54b 100755 --- a/cron-jobs/sourceballs +++ b/cron-jobs/sourceballs @@ -83,7 +83,7 @@ for repo in "${PKGREPOS[@]}"; do cp -a "$(xbs releasepath "${pkgbase}" "${repo}" "${pkgarch}")" \ "${WORKDIR}/pkgbuilds/${repo}-${pkgarch}/${pkgbase}" >/dev/null 2>&1 if [ $? -ge 1 ]; then - failedpkgs[${#failedpkgs[*]}]="${pkgbase}-${pkgver}${SRCEXT}" + failedpkgs+=("${pkgbase}-${pkgver}${SRCEXT}") continue fi |