Skip to content

Instantly share code, notes, and snippets.

@amitapl
Created December 20, 2012 22:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amitapl/4349245 to your computer and use it in GitHub Desktop.
Save amitapl/4349245 to your computer and use it in GitHub Desktop.
@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