Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 0581250

Browse files
authoredJan 13, 2022
Merge pull request #86 from seven1m/master
fix(Plugin): don't install plugins globally
2 parents 49aca57 + 8a16fc9 commit 0581250

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎entrypoint.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ if [ -n "$INPUT_PRETTIER_PLUGINS" ]; then
6464
exit 1
6565
fi
6666
done
67-
npm install --silent --global $INPUT_PRETTIER_PLUGINS
67+
npm install --silent $INPUT_PRETTIER_PLUGINS
6868
fi
6969
)
7070

0 commit comments

Comments
 (0)
Please sign in to comment.