]> git.decadent.org.uk Git - dak.git/commitdiff
mkchecksums: store md5sums in correct location
authorAnsgar Burchardt <ansgar@debian.org>
Sun, 17 Mar 2013 16:11:30 +0000 (17:11 +0100)
committerAnsgar Burchardt <ansgar@debian.org>
Sun, 17 Mar 2013 16:11:30 +0000 (17:11 +0100)
We cannot use $indices as the location is specific to each archive.

config/debian/dinstall.functions

index 07295697caf4eae3062033aabec1a032e4555630..1ced76028b703c107b19ed6a4028705ef3ca598a 100644 (file)
@@ -385,15 +385,15 @@ function mkfilesindices() {
 }
 
 function mkchecksums() {
-    local archiveroot
+    local archiveroot dsynclist md5list
 
     for archive in "${public_archives[@]}"; do
+        archiveroot="$(get_archiveroot "${archive}")"
         dsynclist=$dbdir/dsync.${archive}.list
-        md5list=$indices/md5sums
+        md5list=${archiveroot}/indices/md5sums
 
         log -n "Creating md5 / dsync index file for ${archive}... "
 
-        archiveroot="$(get_archiveroot "${archive}")"
         cd "$archiveroot"
         ${bindir}/dsync-flist -q generate $dsynclist --exclude $dsynclist --md5
         ${bindir}/dsync-flist -q md5sums $dsynclist | gzip -9n > ${md5list}.gz