You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
388 B

  1. --- a/update-pciids.sh
  2. +++ b/update-pciids.sh
  3. @@ -33,7 +33,7 @@ if which curl >/dev/null 2>&1 ; then
  4. DL="curl -o $DEST.new $SRC"
  5. ${quiet} && DL="$DL -s -S"
  6. elif which wget >/dev/null 2>&1 ; then
  7. - DL="wget --no-timestamping -O $DEST.new $SRC"
  8. + DL="wget -O $DEST.new $SRC"
  9. ${quiet} && DL="$DL -q"
  10. elif which lynx >/dev/null 2>&1 ; then
  11. DL="eval lynx -source $SRC >$DEST.new"