Created
December 20, 2012 22:43
-
-
Save amitapl/4349245 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
IF "%SITE_FLAVOR%" == "nodejs" ( | |
deploy.node.cmd | |
) ELSE ( | |
IF "%SITE_FLAVOR%" == "mvc4" ( | |
deploy.mvc4.cmd | |
) ELSE ( | |
echo You have to set SITE_FLAVOR setting to either "nodejs" or "mvc4" | |
exit /b 1 | |
) | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment