summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Ismael Haase Hernández <hahj87@gmail.com>2011-04-16 14:49:51 -0500
committerJoshua Ismael Haase Hernández <hahj87@gmail.com>2011-04-16 14:49:51 -0500
commite341449526be63b061e6d2661e5f539b959e8c07 (patch)
tree9aea6fed67dee069fde805ee3796a3a578eff02c
parent0bb0476a6cff7b5ad79c518bcb95c6ee170b0ac9 (diff)
Will this solve problems?
-rwxr-xr-xrepo-update6
1 files changed, 3 insertions, 3 deletions
diff --git a/repo-update b/repo-update
index 59a0658..495f515 100755
--- a/repo-update
+++ b/repo-update
@@ -8,7 +8,7 @@ source ./libremessages
for repo in ${PKGREPOS[@]}; do
for arch in ${ARCHES[@]} 'any'; do
msg "Syncing ${repo} ${arch}"
- filter.py -r "${rsync_blacklist}" -k "${blacklist}" -c \
+ python filter.py -r "${rsync_blacklist}" -k "${blacklist}" -c \
\"${rsync_list_command}\ \
${mirror}${mirrorpath}/${repo}/os/${arch}\ \
${repodir}/${repo}/\"
@@ -22,11 +22,11 @@ for repo in ${PKGREPOS[@]}; do
done
for arch in ${ARCHES[@]}; do
if [ -r ${repodir}/${repo}/os/${arch}/${repo}${DBEXT} ]; then
- clean_repo.py -k ${blacklist} -w ${whitelist} \
+ python clean_repo.py -k ${blacklist} -w ${whitelist} \
-p ${docs_dir}/pending-${repo} \
-b ${repodir}/${repo}/${repo}${DBEXT}
fi
- clean_repo.py -k ${blacklist} -d ${repodir}/${repo}
+ python clean_repo.py -k ${blacklist} -d ${repodir}/${repo}
done
done