Skip to content

Commit bddb107

Browse files
committed
Actually fix ShellCheck
Signed-off-by: Ethan Dye <mrtops03@gmail.com>
1 parent d9a1301 commit bddb107

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

functions/nodejs-apps.bash

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,8 @@ frontail_remove() {
8282
frontailBase="$(npm list -g | head -n 1)/node_modules/frontail"
8383

8484
if ! dpkg --compare-versions "$(sed -n 's/openhab-distro\s*: //p' /var/lib/openhab/etc/version.properties)" gt "4.3.0"; then return 0; fi
85-
if [[ -z $INTERACTIVE ]] || [[ $frontail_remove == "true" ]]; then return 0; fi # shellcheck disable=SC2154
85+
# shellcheck disable=SC2154
86+
if [[ -z $INTERACTIVE ]] || [[ $frontail_remove == "true" ]]; then return 0; fi
8687

8788

8889
if [[ -d $frontailBase ]] || [[ -d $frontailDir ]]; then

0 commit comments

Comments
 (0)