From c3aa84f9615e2f98d1ece742d1be1e217f0889b6 Mon Sep 17 00:00:00 2001 From: HungryHobo Date: Fri, 12 Nov 2010 05:09:06 +0000 Subject: [PATCH] Run includedeb and include on each file individually, reprepro can't do multiple files --- debian/makerepo.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/makerepo.sh b/debian/makerepo.sh index 8363abf97..64d696966 100755 --- a/debian/makerepo.sh +++ b/debian/makerepo.sh @@ -28,8 +28,8 @@ echo "SignWith: ${SIGNER}" >> ${CONFFILE} # create the repository echo Building the repository... -reprepro --ask-passphrase --outdir ${DIR} includedeb all ../../i2p_*.deb -reprepro --ask-passphrase --outdir ${DIR} include all ../../i2p_*.changes +find ../.. -name i2p_*.deb -maxdepth 1 -exec reprepro --ask-passphrase --outdir ${DIR} includedeb all {} \; +find ../.. -name i2p_*.changes -maxdepth 1 -exec reprepro --ask-passphrase --outdir ${DIR} include all {} \; # export the public key gpg --armor --export ${SIGNER} > ${DIR}/0x${KEYID}.asc