diff --git a/update-smart-drivedb b/update-smart-drivedb
index b8d5505..32e0c6e 100755
|
a
|
b
|
elif which wget >/dev/null 2>/dev/null; then
|
| 84 | 84 | DOWNLOAD="wget $q"'-O "$DEST.new" "$SRC"' |
| 85 | 85 | elif which lynx >/dev/null 2>/dev/null; then |
| 86 | 86 | DOWNLOAD='lynx -source "$SRC" >"$DEST.new"' |
| | 87 | elif which fetch >/dev/null 2>/dev/null; then |
| | 88 | DOWNLOAD='fetch -o "$DEST.new" "$SRC"' |
| 87 | 89 | else |
| 88 | | echo "$0: curl, wget or lynx not available" >&2; exit 1 |
| | 90 | echo "$0: curl, wget, fetch or lynx not available" >&2; exit 1 |
| 89 | 91 | fi |
| 90 | 92 | |
| 91 | 93 | # Try possible branch first, then trunk |