Skip to content

Commit

Permalink
Update deploy.cmd
Browse files Browse the repository at this point in the history
  • Loading branch information
Vishnu-MSFT authored Mar 26, 2020
1 parent 3824a1a commit cc81118
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions deploy.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,12 @@ IF "%SITE_ROLE%" == "bot" (
IF "%SITE_ROLE%" == "questions" (
deploy.questions.cmd
) ELSE (
echo You have to set SITE_ROLE setting to either "bot" or "dashboard" or "questions" or "function"
exit /b 1
IF "%SITE_ROLE%" == "function" (
deploy.function.cmd
) ELSE (
echo You have to set SITE_ROLE setting to either "bot" or "dashboard" or "questions" or "function"
exit /b 1
)
)
)
)

0 comments on commit cc81118

Please sign in to comment.