Capitalize log messages

This commit is contained in:
Manuel Thalmann 2023-03-25 19:31:00 +01:00
parent 14bbdbdc71
commit 56601510e2

View file

@ -129,12 +129,12 @@ RUN \
[ "$exitCode" -ne 0 ] && mv "$logFile" "logs/fail-try$try.log"; \ [ "$exitCode" -ne 0 ] && mv "$logFile" "logs/fail-try$try.log"; \
}; \ }; \
[ "$exitCode" -ne 0 ] && { \ [ "$exitCode" -ne 0 ] && { \
[ "$exitCode" -eq 42 ] && echo "The installation got stuck" || \ [ "$exitCode" -eq 42 ] && echo "The installation Got Stuck" || \
echo "The installation failed"; \ echo "The Installation Failed"; \
} || \ } || \
echo "The installation was successful"; \ echo "The Installation Was Successful"; \
echo "Installation process exited with code $exitCode"; \ echo "Installation Process Exited With Code $exitCode"; \
bash -c "exit $exitCode"; \ return "$exitCode"; \
}; \ }; \
display=:90; \ display=:90; \
export DISPLAY=$display; \ export DISPLAY=$display; \