|
@@ -36,8 +36,12 @@ echo Building MSI
|
|
|
pushd "%cd%\src" || exit /b 1
|
|
|
start /wait /min candle "%cd%\ambari-scom.wxs" || exit /b 1
|
|
|
start /wait /min light "%cd%\ambari-scom.wixobj" || exit /b 1
|
|
|
+if not exist "%cd%\ambari-scom.msi" (
|
|
|
+echo MSI build failed
|
|
|
+exit /b 1
|
|
|
+)
|
|
|
popd || exit /b 1
|
|
|
-copy /y "..\management-pack\Hadoop_MP\Installer\bin\Debug\en-us\AmbariSCOMManagementPack.msi" "%cd%\ambari-scom.msi" || exit /b 1
|
|
|
+copy /y "..\management-pack\Hadoop_MP\Installer\bin\Debug\en-us\AmbariSCOMManagementPack.msi" "%cd%\ambari-scom-mp.msi" || exit /b 1
|
|
|
|
|
|
echo Cleaning
|
|
|
del /f /q "%cd%\src\ambari-scom.wixobj" || exit /b 1
|