From 2449f14fc0b8159e14e7552410ce9ece2b21d182 Mon Sep 17 00:00:00 2001 From: BrainwreckedTech <--get> Date: Mon, 18 Jan 2021 23:41:21 -0500 Subject: [PATCH] Fixed coding error in if block. --- mkwebapp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mkwebapp b/mkwebapp index 35084a2..980401b 100755 --- a/mkwebapp +++ b/mkwebapp @@ -109,7 +109,7 @@ if [ -z "${WAPPICON}" ]; then fi ### CORRECT SHORT NAMES TO FULL NAMES -[ "${WA_BRWSR}" ] = "chrome" && WA_BRWSR="google-chrome" +[ "${WA_BRWSR}" = "chrome" ] && WA_BRWSR="google-chrome" ### SET SUFFIX AND BIN BASED ON BROWSER case "${WA_BRWSR}" in @@ -226,4 +226,4 @@ chmod -v +x "${WAPP_DTF}" if [ -n "${EWA_PRFX}" ]; then printf -- ':: ln -s: ' ln -sv "../${EWA_PRFX}${WAPPNAME,,}/${EWA_PRFX}${WAPPNAME,,}.proxied.desktop" "${APPS_DIR}/${EWA_PRFX}${WAPPNAME,,}.proxied.desktop" -fi \ No newline at end of file +fi