12 lines
388 B
Diff
12 lines
388 B
Diff
|
--- a/update-pciids.sh
|
||
|
+++ b/update-pciids.sh
|
||
|
@@ -33,7 +33,7 @@ if which curl >/dev/null 2>&1 ; then
|
||
|
DL="curl -o $DEST.new $SRC"
|
||
|
${quiet} && DL="$DL -s -S"
|
||
|
elif which wget >/dev/null 2>&1 ; then
|
||
|
- DL="wget --no-timestamping -O $DEST.new $SRC"
|
||
|
+ DL="wget -O $DEST.new $SRC"
|
||
|
${quiet} && DL="$DL -q"
|
||
|
elif which lynx >/dev/null 2>&1 ; then
|
||
|
DL="eval lynx -source $SRC >$DEST.new"
|