Fixing issue that build did not stop when mvn build failed

This commit is contained in:
tawan0109 2016-05-19 12:16:06 +08:00
Родитель 5b86ee546a
Коммит b97ed0a37d
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -79,12 +79,14 @@ IF "%APPVEYOR_REPO_TAG%" == "true" (goto :sign)
:mvndone
set MVN_ERRORLEVEL=%ERRORLEVEL%
@rem
@rem After uber package is created, restore Pom.xml
@rem
copy /y %temp%\pom.xml.original pom.xml
if %ERRORLEVEL% NEQ 0 (
if %MVN_ERRORLEVEL% NEQ 0 (
@echo Build Mobius Scala components failed, stop building.
popd
goto :eof