Merge branch 'master' into auth

This commit is contained in:
Danny McCormick 2019-08-05 21:33:24 -04:00 committed by GitHub
commit 6b65ca8e49
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
55 changed files with 240 additions and 3153 deletions

15
node_modules/.bin/shjs generated vendored
View file

@ -1,15 +0,0 @@
#!/bin/sh
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
case `uname` in
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
esac
if [ -x "$basedir/node" ]; then
"$basedir/node" "$basedir/../shelljs/bin/shjs" "$@"
ret=$?
else
node "$basedir/../shelljs/bin/shjs" "$@"
ret=$?
fi
exit $ret

7
node_modules/.bin/shjs.cmd generated vendored
View file

@ -1,7 +0,0 @@
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\..\shelljs\bin\shjs" %*
) ELSE (
@SETLOCAL
@SET PATHEXT=%PATHEXT:;.JS;=;%
node "%~dp0\..\shelljs\bin\shjs" %*
)