From fc50450d63e95f3e941e13d920480a0c912f8687 Mon Sep 17 00:00:00 2001 From: Jessica Wagantall Date: Wed, 15 Nov 2017 19:57:54 -0800 Subject: [PATCH] Fix wget command for Nexus sign script Add --level=15 to wget command that fetches the autoreleases from Nexus. Looks like the previous command wasn't fetching all the artifacts in the autorelease tree. Change-Id: Ieb49331d7b192187ba2e6783b334d90c6477503e Signed-off-by: Jessica Wagantall --- shell/sign | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell/sign b/shell/sign index 1839546c..9f03c7d7 100755 --- a/shell/sign +++ b/shell/sign @@ -147,7 +147,7 @@ sign_nexus() { echo "Fetching artifacts from $nexus_repo_url to $sign_dir..." if ! wget -nv --recursive --execute robots=off --no-parent \ - --no-host-directories --cut-dirs=3 \ + --no-host-directories --cut-dirs=3 --level=15 \ "$nexus_repo_url"; then echo "ERROR: Failed to download artifacts." exit 1 -- 2.16.6