Don't run endlocal before recursive call

This commit is contained in:
mpeterv 2016-04-03 14:30:11 +03:00
parent edc018cd07
commit e7235d68b0

View File

@ -1173,7 +1173,6 @@ def main(argv=None):
bat_h.write(b"set exitcode=%errorlevel%\r\n") bat_h.write(b"set exitcode=%errorlevel%\r\n")
bat_h.write(b"if %exitcode% equ 0 (\r\n") bat_h.write(b"if %exitcode% equ 0 (\r\n")
bat_h.write(b" endlocal\r\n")
bat_h.write(b" {}\r\n".format(recursive_call)) bat_h.write(b" {}\r\n".format(recursive_call))
bat_h.write(b") else (\r\n") bat_h.write(b") else (\r\n")
@ -1181,7 +1180,6 @@ def main(argv=None):
bat_h.write(b' type "{}"\r\n'.format(setup_output_name)) bat_h.write(b' type "{}"\r\n'.format(setup_output_name))
bat_h.write(b" echo Error: got exitcode %exitcode% from command {}\r\n".format(vs_setup_cmd)) bat_h.write(b" echo Error: got exitcode %exitcode% from command {}\r\n".format(vs_setup_cmd))
bat_h.write(b" endlocal\r\n")
bat_h.write(b" exit /b 1\r\n") bat_h.write(b" exit /b 1\r\n")
bat_h.write(b")\r\n") bat_h.write(b")\r\n")
bat_h.close() bat_h.close()