Skip to content

Commit c8ce40e

Browse files
authored
Merge pull request #104771 from mimckitt/patch-27
MicrosoftDocs/azure-docs#47879
2 parents 93136f0 + 36f3682 commit c8ce40e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/cloud-services/cloud-services-startup-tasks-common.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ REM ERRORLEVEL 183 occurs when trying to add a section that already exists. Th
8585
REM batch file were executed twice. This can occur and must be accounted for in an Azure startup
8686
REM task. To handle this situation, set the ERRORLEVEL to zero by using the Verify command. The Verify
8787
REM command will safely set the ERRORLEVEL to zero.
88-
IF %ERRORLEVEL% EQU 183 DO VERIFY > NUL
88+
IF %ERRORLEVEL% EQU 183 VERIFY > NUL
8989
9090
REM If the ERRORLEVEL is not zero at this point, some other error occurred.
9191
IF %ERRORLEVEL% NEQ 0 (

0 commit comments

Comments
 (0)