summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--config1
-rwxr-xr-xcreaterepos4
-rwxr-xr-xcron-jobs/sourceballs22
3 files changed, 3 insertions, 4 deletions
diff --git a/config b/config
index 496b3ef..3b7c13a 100644
--- a/config
+++ b/config
@@ -1,6 +1,5 @@
#/bin/bash # as a hint to text editors
FTP_BASE="/srv/http/repo/public"
-ARCH_BASE="/srv/http/repo/public"
SVNREPO="/var/abs"
# Repos from Arch
diff --git a/createrepos b/createrepos
index 4ee057b..eec26e0 100755
--- a/createrepos
+++ b/createrepos
@@ -3,6 +3,6 @@
source $(dirname $0)/config
-mkdir -p ${FTP_BASE}/{${PKGPOOL},${SRCPOOL}} ${ARCH_BASE} ${CLEANUP_DESTDIR} ${SOURCE_CLEANUP_DESTDIR} ${STAGING}
+mkdir -p -- "${FTP_BASE}"/{"${PKGPOOL}","${SRCPOOL}"} "${CLEANUP_DESTDIR}" "${SOURCE_CLEANUP_DESTDIR} ${STAGING}"
-$(dirname $0)/create-repo ${PKGREPOS[@]}
+$(dirname $0)/create-repo "${PKGREPOS[@]}"
diff --git a/cron-jobs/sourceballs2 b/cron-jobs/sourceballs2
index 5644268..5b14d07 100755
--- a/cron-jobs/sourceballs2
+++ b/cron-jobs/sourceballs2
@@ -17,7 +17,7 @@ script_lock
renice +10 -p $$ > /dev/null
# Create a list of all available source package file names
-find "${ARCH_BASE}/${SRCPOOL}" -xtype f -name "*${SRCEXT}" -printf '%f\n' | sort -u > "${WORKDIR}/available-src-pkgs"
+find "${FTP_BASE}/${SRCPOOL}" -xtype f -name "*${SRCEXT}" -printf '%f\n' | sort -u > "${WORKDIR}/available-src-pkgs"
pushd "${SVNREPO}" >/dev/null