Fixed coding error in if block.

master
BrainwreckedTech 4 years ago
parent 44553cdd39
commit 2449f14fc0

@ -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
fi

Loading…
Cancel
Save