tools/hwdb-update: allow downloads to fail
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Fri, 2 Mar 2018 11:06:32 +0000 (12:06 +0100)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Fri, 2 Mar 2018 11:06:32 +0000 (12:06 +0100)
sf.net is down, and linux-usb.org which is hosted there also fails.
That's not nice, but there's not we can do about it now.

tools/meson-hwdb-update.sh

index 6f8f0ca..d4ec555 100755 (executable)
@@ -3,8 +3,16 @@ set -eu
 
 cd "$1"
 
+unset permissive
+if [ "$2" = "-p" ]; then
+        permissive=1
+        shift
+fi
+
 if [ "${2:-}" != "-n" ]; then (
+        [ -z "$permissive" ] || set +e
         set -x
+
         curl -L -o usb.ids 'http://www.linux-usb.org/usb.ids'
         curl -L -o pci.ids 'http://pci-ids.ucw.cz/v2.2/pci.ids'
         curl -L -o ma-large.txt 'http://standards-oui.ieee.org/oui/oui.txt'