From 0faaf9bad1e9e0da4d30387b5c7ac07fd6839f86 Mon Sep 17 00:00:00 2001 From: "Sebastian K. Sorensen" Date: Sun, 10 Jan 2021 15:57:13 +0100 Subject: [PATCH] Use POSIX brackets instead --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index 8cabb43..7d14feb 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -30,7 +30,7 @@ echo "Installing prettier..." case $INPUT_PRETTIER_VERSION in false) npm install --silent --global prettier - if [[ -n $INPUT_PRETTIER_PLUGINS ]]; then + if [ -n $INPUT_PRETTIER_PLUGINS ]; then npm install --silent --global $INPUT_PRETTIER_PLUGINS fi ;;