Fix wget command for Nexus sign script 73/7573/3
authorJessica Wagantall <jwagantall@linuxfoundation.org>
Thu, 16 Nov 2017 03:57:54 +0000 (19:57 -0800)
committerJessica Wagantall <jwagantall@linuxfoundation.org>
Wed, 3 Jan 2018 19:22:21 +0000 (19:22 +0000)
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 <jwagantall@linuxfoundation.org>
shell/sign

index 1839546..9f03c7d 100755 (executable)
@@ -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