From: Gary Lowell Date: Tue, 30 Jul 2013 05:48:25 +0000 (-0700) Subject: build-debian.sh: Don't copy to other dists X-Git-Tag: v1.2~17 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=8fbf61822f918b3077ab2ed6153f0e46a027184a;p=ceph-deploy.git build-debian.sh: Don't copy to other dists Don't copy the just build packgaes to the other distros in the repo. There are no per distro builds. Signed-off-by: Gary Lowell --- diff --git a/scripts/build-debian.sh b/scripts/build-debian.sh index 19446a4..4e477f9 100755 --- a/scripts/build-debian.sh +++ b/scripts/build-debian.sh @@ -53,14 +53,14 @@ SignWith: $KEYID EOF done -echo "Adding package to repo, dist: $DEB_BUILD" +echo "Adding package to repo, dist: $DEB_BUILD ($PKG)" reprepro --ask-passphrase -b $REPO -C $COMPONENT --ignore=undefinedtarget --ignore=wrongdistribution include $DEB_BUILD $PKG -for DIST in $DEB_DIST -do - [ "$DIST" = "$DEB_BUILD" ] && continue - echo "Copying package to dist: $DIST" - reprepro -b $REPO --ignore=undefinedtarget --ignore=wrongdistribution copy $DIST $DEB_BUILD ceph-deploy -done +#for DIST in $DEB_DIST +#do +# [ "$DIST" = "$DEB_BUILD" ] && continue +# echo "Copying package to dist: $DIST" +# reprepro -b $REPO --ignore=undefinedtarget --ignore=wrongdistribution copy $DIST $DEB_BUILD ceph-deploy +#done echo "Done"