diff options
author | Aaron Griffin <aaronmgriffin@gmail.com> | 2009-09-01 09:34:21 -0700 |
---|---|---|
committer | Aaron Griffin <aaronmgriffin@gmail.com> | 2009-09-01 09:34:21 -0700 |
commit | 1e84b6715a688e1c2f1e50e3834511ed21d5c291 (patch) | |
tree | 3c1750ba4554d819e1c1523cc62c99b68414c924 /cron-jobs | |
parent | 620b631fedbbd3596baa6752b9234249a2239a2a (diff) |
sourceballs: explicitly add the 'any' arch
Loop over all arches AND the 'any' arch.
Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
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 4353935..aa06aff 100755 --- a/cron-jobs/sourceballs +++ b/cron-jobs/sourceballs @@ -36,7 +36,7 @@ FAILED_PKGS="" echo "Errors occured during run:" > "$srcbase/errors.txt" for repo in $repos; do - for arch in ${ARCHES[@]}; do + for arch in ${ARCHES[@]} any; do export CARCH="$arch" ftppath="$ftpbase/$repo/os/$arch" if [ ! -d "$ftppath" ]; then |