From: Jessica Wagantall Date: Thu, 16 Nov 2017 03:57:54 +0000 (-0800) Subject: Fix wget command for Nexus sign script X-Git-Tag: v0.11.1~1^2 X-Git-Url: https://gerrit.linuxfoundation.org/infra/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F73%2F7573%2F3;p=releng%2Flftools.git 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 --- 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