version app + node.exe + nw.exe

This commit is contained in:
Antoine WEBER
2015-10-13 21:47:32 +02:00
parent 858c5bd713
commit ca00dcd224
2642 changed files with 388899 additions and 6 deletions

21
node_modules/cluster/test/run generated vendored Normal file
View File

@@ -0,0 +1,21 @@
#!/bin/sh
rm -f test/pids/*.pid
rm -f test/*.sock test/support/*.sock
rm -f test/logs/*.log
rm -f test/logs/nested/*.log
clean() {
killall -KILL node &> /dev/null
}
clean
echo
files=test/test.*.js
for file in $files; do
printf "\033[90m ${file#test/}\033[0m "
node $@ $file && echo "\033[36m✓\033[0m"
test $? -eq 0 || exit $?
done
echo