From 3380e4ae80971c6f67af3db141460450029559a1 Mon Sep 17 00:00:00 2001 From: Holger Levsen Date: Tue, 8 Nov 2016 14:47:49 +0100 Subject: reproducible Debian: deal with 404-code as plain text Signed-off-by: Holger Levsen --- bin/reproducible_create_meta_pkg_sets.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bin/reproducible_create_meta_pkg_sets.sh') diff --git a/bin/reproducible_create_meta_pkg_sets.sh b/bin/reproducible_create_meta_pkg_sets.sh index d8ba5a5d..c74148ce 100755 --- a/bin/reproducible_create_meta_pkg_sets.sh +++ b/bin/reproducible_create_meta_pkg_sets.sh @@ -331,7 +331,7 @@ update_pkg_set_specific() { URL="http://grml.org/files/grml64-full_latest/dpkg.selections" echo "Downloading $URL now." curl $URL | cut -f1 > $TMPFILE - if ! grep '404 Not Found' $TMPFILE ; then + if ! grep '404 Not Found' $TMPFILE ; then echo "parsing $TMPFILE now..." packages_list_to_deb822 convert_from_deb822_into_source_packages_only @@ -348,7 +348,7 @@ update_pkg_set_specific() { URL="https://nightly.tails.boum.org/build_Tails_ISO_devel/lastSuccessful/archive/latest.iso.build-manifest" echo "Downloading $URL now." curl $URL > $TMPFILE - if ! grep '404 Not Found' $TMPFILE ; then + if ! grep '404 Not Found' $TMPFILE ; then echo "parsing $TMPFILE now..." tails_build_manifest_to_deb824 "$TMPFILE" "$PACKAGES" convert_from_deb824_into_source_packages_only -- cgit v1.2.3-54-g00ecf