Skip to content

Commit

Permalink
tools: fix tools/update-eslint.sh
Browse files Browse the repository at this point in the history
Changes to the npm dependency in the core repo require changes to
update-eslint.sh.
  • Loading branch information
Trott committed Oct 10, 2021
1 parent 92090d3 commit 0463afb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tools/update-eslint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
# This script must be in the tools directory when it runs because it uses the
# script source file path to determine directories to work in.

set -e

cd "$( dirname "$0" )" || exit
rm -rf node_modules/eslint node_modules/eslint-plugin-markdown
(
Expand All @@ -14,7 +16,7 @@ rm -rf node_modules/eslint node_modules/eslint-plugin-markdown
ROOT="$PWD/../.."
[ -z "$NODE" ] && NODE="$ROOT/out/Release/node"
[ -x "$NODE" ] || NODE=`command -v node`
NPM="$ROOT/deps/npm"
NPM="$ROOT/deps/npm/bin/npm-cli.js"

"$NODE" "$NPM" init --yes

Expand Down

0 comments on commit 0463afb

Please sign in to comment.