diff options
author | Reiner Herrmann <reiner@reiner-h.de> | 2015-06-09 18:35:18 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-06-09 20:13:55 +0200 |
commit | 167a36d0b30228f4b84579cc3516d9590f55a17a (patch) | |
tree | 7d37f959db75b2a03cc6dbfc8784e289259e2466 /bin | |
parent | e6b5b2be77cda5b3842cb2dff05351689e2bd137 (diff) | |
download | jenkins.debian.net-167a36d0b30228f4b84579cc3516d9590f55a17a.tar.xz |
reproducible: fix check for existing pkgset
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_create_meta_pkg_sets.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_create_meta_pkg_sets.sh b/bin/reproducible_create_meta_pkg_sets.sh index e9b36cc1..87eb46a4 100755 --- a/bin/reproducible_create_meta_pkg_sets.sh +++ b/bin/reproducible_create_meta_pkg_sets.sh @@ -91,7 +91,7 @@ get_installable_set() { update_pkg_sets() { # the essential package set - if [ ! -z $(find $TPATH -maxdepth 1 -mtime +0 -name ${META_PKGSET[1]}.pkgset) ] || [ ! -f $TPATH/${META_PKGSET[3]}.pkgset ] ; then + if [ ! -z $(find $TPATH -maxdepth 1 -mtime +0 -name ${META_PKGSET[1]}.pkgset) ] || [ ! -f $TPATH/${META_PKGSET[1]}.pkgset ] ; then chdist --data-dir=$CHPATH grep-dctrl-packages $DISTNAME -X -FEssential yes > $TMPFILE convert_from_deb822_into_source_packages_only update_if_similar ${META_PKGSET[1]}.pkgset |