[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

9
bin/check_reqs.bat Normal file
View File

@@ -0,0 +1,9 @@
@ECHO OFF
SET full_path=%~dp0
IF EXIST %full_path%check_reqs.js (
cscript "%full_path%check_reqs.js" //nologo
) ELSE (
ECHO.
ECHO ERROR: Could not find 'check_reqs.js' in 'bin' folder, aborting...>&2
EXIT /B 1
)