From a58849989339108f8cf9489028fa418c86319899 Mon Sep 17 00:00:00 2001 From: Mike Hommey Date: Wed, 20 Dec 2017 16:01:51 +0900 Subject: [PATCH] Bug 1426321 - Explicitly enable tar wildcard support when repacking proguard. r=nalexander While on Centos --wildcards is the default, it is not on Debian. --HG-- extra : rebase_source : cff03dfb587d295c4e8f8893948a9775d6e5e8b5 --- taskcluster/scripts/misc/repack-proguard-jar.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/taskcluster/scripts/misc/repack-proguard-jar.sh b/taskcluster/scripts/misc/repack-proguard-jar.sh index fd816b265415..941154d5625d 100755 --- a/taskcluster/scripts/misc/repack-proguard-jar.sh +++ b/taskcluster/scripts/misc/repack-proguard-jar.sh @@ -21,7 +21,7 @@ wget $URL echo "$SHA256SUM $ARCHIVE" | sha256sum -c - # Just the file we need. -tar zxvf $ARCHIVE '*/proguard.jar' +tar --wildcards -zxvf $ARCHIVE '*/proguard.jar' # The archive is to satisfy source distribution requirements. mv $ARCHIVE $UPLOAD_DIR