Open in Web IDE
Quickly and easily edit multiple files in your project.
Edit
Edit this file only.
@ECHO OFF
if [%1]==[] goto usage
echo ** Compiling Application
call compile %1
echo ** Publising Alpha Application
call cphub_push_alpha %1
goto :eof
:usage
@echo Usage: %0 ^<tag (e.g. v1.0.2.3)^>
exit /B 1