Disable robots.txt parsing for wget download 50/1650/1
authorKrisztian Lengyel <krisztian.lengyel@nokia.com>
Wed, 25 Sep 2019 12:42:08 +0000 (14:42 +0200)
committerKrisztian Lengyel <krisztian.lengyel@nokia.com>
Wed, 25 Sep 2019 14:10:07 +0000 (16:10 +0200)
Change-Id: Iab84213c2ef657fec22c9dea695fc01bbe4433ef
Signed-off-by: Krisztian Lengyel <krisztian.lengyel@nokia.com>
build_step_create_install_cd.sh

index 40d3880..abfd91d 100755 (executable)
@@ -50,7 +50,14 @@ wget_dir() {
   url=$(remove_extra_slashes_from_url $url)
   # count cut length in case url depth changes
   cut_dirs=$(echo $url | sed -re 's|.*://[^/]+/(.+)|\1|' -e 's|/$||' | grep -o / | wc -l)
-  wget -N -r --no-host-directories --no-verbose --cut-dirs=${cut_dirs} --reject index.html* --no-parent $url
+  wget -N -r \
+    --no-host-directories \
+    --no-verbose \
+    --cut-dirs=${cut_dirs} \
+    --reject index.html* \
+    --no-parent \
+    --execute robots=off \
+    $url
 }
 
 pushd $iso_build_dir