diff --git a/installers-conda/resources/post-install.bat b/installers-conda/resources/post-install.bat index 142b1e21471..e3703b76d38 100644 --- a/installers-conda/resources/post-install.bat +++ b/installers-conda/resources/post-install.bat @@ -13,7 +13,7 @@ if "%INSTALLER_UNATTENDED%"=="1" set no_launch_spyder=true @echo INSTALLER_UNATTENDED = %INSTALLER_UNATTENDED% @echo no_launch_spyder = %no_launch_spyder% if defined no_launch_spyder ( - @echo Installing in CI or silent mode, do not launch Spyder + @echo Installing in silent mode, do not launch Spyder exit /b %errorlevel% ) else ( @echo Launching Spyder after install completed. diff --git a/installers-conda/resources/post-install.sh b/installers-conda/resources/post-install.sh index 1b6d15014c2..357a5faaa9e 100755 --- a/installers-conda/resources/post-install.sh +++ b/installers-conda/resources/post-install.sh @@ -187,7 +187,7 @@ echo "*** Post install script for ${INSTALLER_NAME} complete" # ---- Launch Spyder if [[ -n "$CI" || "$INSTALLER_UNATTENDED" == "1" || "$COMMAND_LINE_INSTALL" == "1" ]]; then - echo Installing in CI or batch mode, do not launch Spyder + echo Installing in batch mode, do not launch Spyder exit 0 fi