aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/fwget/fwget.sh
diff options
context:
space:
mode:
authorEmmanuel Vadot <manu@FreeBSD.org>2023-07-07 07:16:05 +0000
committerEmmanuel Vadot <manu@FreeBSD.org>2023-07-07 07:19:41 +0000
commitc81495a621c461b3d3395a7c5b0e73458201c443 (patch)
treed9e939b0f28499d790c8b1fe7e06067210a0ea40 /usr.sbin/fwget/fwget.sh
parenta81b559dad5b75548d1ea847db24147a4410ed92 (diff)
downloadsrc-c81495a621c461b3d3395a7c5b0e73458201c443.tar.gz
src-c81495a621c461b3d3395a7c5b0e73458201c443.zip
fwget: Fix quoting
This kind of quoting doesn't work, no idea why shellcheck wanted this. If there is a "safer" way to "fix" this feel free to do it just test that it's working after. Reported by: Kenneth Raplee <kenrap@kennethraplee.com> Sponsored by: Beckhoff Automation GmbH & Co. KG Fixes: 7ad4d94d5bf2 ("Fix some shell issues by adding quotes and replace backticks with $()")
Diffstat (limited to 'usr.sbin/fwget/fwget.sh')
-rw-r--r--usr.sbin/fwget/fwget.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/fwget/fwget.sh b/usr.sbin/fwget/fwget.sh
index 61acaee86687..90bc23b07077 100644
--- a/usr.sbin/fwget/fwget.sh
+++ b/usr.sbin/fwget/fwget.sh
@@ -27,7 +27,7 @@
# IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
-: "${LIBEXEC_PATH:='/usr/libexec/fwget'}"
+: ${LIBEXEC_PATH:="/usr/libexec/fwget"}
usage()
{