[CB-2914] Cli script migration for windows jscript

This commit is contained in:
Benn Mapes
2013-04-16 10:34:14 -07:00
parent e7e2730929
commit 4599e9897d
16 changed files with 829 additions and 94 deletions
@@ -0,0 +1,9 @@
@ECHO OFF
SET full_path=%~dp0
IF EXIST %full_path%cordova.js (
cscript "%full_path%cordova.js" install-device %* //nologo
) ELSE (
ECHO.
ECHO ERROR: Could not find 'cordova.js' in cordova/lib, aborting...>&2
EXIT /B 1
)