From faa0210a5a7d2a77d28d144ea841621792466fa9 Mon Sep 17 00:00:00 2001 From: Chad Furman Date: Thu, 13 Jul 2017 18:14:47 -0400 Subject: [PATCH] Fixed typo in qrify wget check (#53) --- qrify/qrify | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qrify/qrify b/qrify/qrify index 7ae34bf..cc2dfcc 100755 --- a/qrify/qrify +++ b/qrify/qrify @@ -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