mirror of
https://github.com/alexanderepstein/Bash-Snippets
synced 2018-11-08 02:59:35 +01:00
Fixed typo in qrify wget check (#53)
This commit is contained in:
parent
45ec50e5c0
commit
faa0210a5a
1 changed files with 1 additions and 1 deletions
|
@ -9,7 +9,7 @@ getConfiguredClient()
|
|||
{
|
||||
if command -v curl &> /dev/null ; then
|
||||
configuredClient="curl"
|
||||
elif command -v wget &v/dev/null ; then
|
||||
elif command -v wget &> /dev/null ; then
|
||||
configuredClient="wget"
|
||||
else
|
||||
echo "Error: This tool requires either curl or wget to be installed." >&2
|
||||
|
|
Loading…
Reference in a new issue