Skip to content
This repository was archived by the owner on May 23, 2021. It is now read-only.

Commit afff57d

Browse files
committed
Fix node submodule check (wrong capitalization)
1 parent 0de7092 commit afff57d

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

scripts/preinstall.bash

+1-4
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,10 @@ function main() {
1313
git submodule update --recursive --init
1414

1515
# Ensure Node has been cloned.
16-
if [[ ! -f ./lib/Node/.git ]] ; then
16+
if [[ ! -f ./lib/node/.git ]] ; then
1717
>&2 echo "Unable to pull Node submodule"; exit 1
1818
fi
1919
fi
20-
21-
# TODO: Messes with tests?
22-
# rm lib/node/test/fixtures/packages/unparseable/package.json
2320
}
2421

2522
main "$@"

0 commit comments

Comments
 (0)