Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/test/packages/npm-test-files/test.sh')
-rw-r--r--deps/npm/test/packages/npm-test-files/test.sh27
1 files changed, 0 insertions, 27 deletions
diff --git a/deps/npm/test/packages/npm-test-files/test.sh b/deps/npm/test/packages/npm-test-files/test.sh
deleted file mode 100644
index cdf47f211a8..00000000000
--- a/deps/npm/test/packages/npm-test-files/test.sh
+++ /dev/null
@@ -1,27 +0,0 @@
-x=`find . | grep ignore | grep -v npmignore`
-if [ "$x" != "" ]; then
- echo "ignored files included: $x"
- exit 1
-fi
-
-x=`find . | grep -v ignore | sort`
-y=".
-./include4
-./package.json
-./sub
-./sub/include
-./sub/include2
-./sub/include4
-./test.sh"
-if [ "$x" != "$y" ]; then
- echo "missing included files"
- echo "got:"
- echo "==="
- echo "$x"
- echo "==="
- echo "wanted:"
- echo "==="
- echo "$y"
- echo "==="
- exit 1
-fi