From 8a16fc9688bd19b14ae68df32693887a3be03649 Mon Sep 17 00:00:00 2001 From: Tim Morgan Date: Sat, 8 Jan 2022 12:37:59 -0600 Subject: [PATCH] Don't install plugins globally This fixes a problem where @prettier/plugin-ruby was not being used. --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index b31f096..0341d92 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -64,7 +64,7 @@ if [ -n "$INPUT_PRETTIER_PLUGINS" ]; then exit 1 fi done - npm install --silent --global $INPUT_PRETTIER_PLUGINS + npm install --silent $INPUT_PRETTIER_PLUGINS fi )