databse remote connection

This commit is contained in:
Lukas Nowy
2018-11-14 00:19:07 +01:00
parent 5bfa3a4007
commit c94a631b1a
6664 changed files with 209 additions and 824596 deletions

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/../cordova/bin/cordova" "$@"
ret=$?
else
node "$basedir/../cordova/bin/cordova" "$@"
ret=$?
fi
exit $ret

View File

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