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>
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