diff options
-rwxr-xr-x | cron-jobs/integrity-check | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/cron-jobs/integrity-check b/cron-jobs/integrity-check index c3b016c..0b59064 100755 --- a/cron-jobs/integrity-check +++ b/cron-jobs/integrity-check @@ -3,12 +3,11 @@ basedir="$(dirname $0)" if [ $# -ne 3 ]; then - echo "usage: $(basename $0) <repo>[,<repo>,...] <arch> <mailto>" >2 + echo "usage: $(basename $0) <repo>[,<repo>,...] <arch> <mailto>" >&2 exit 1 fi -$basedir/cron-jobs/check_archlinux/check_packages.py \ +$basedir/check_archlinux/check_packages.py \ --repos="$1" \ - --abs-tree="/srv/abs/rsync/$2" --arch="$1" |\ - $basedir/cron-jobs/devlist-mailer \ - "Integrity Check $2: $1" "$3" + --abs-tree="/srv/abs/rsync/$2" --arch="$2" |\ + $basedir/devlist-mailer "Integrity Check $2: $1" "$3" |