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 ] && { \
[ "$exitCode" -eq 42 ] && echo "The installation got stuck" || \
echo "The installation failed"; \
[ "$exitCode" -eq 42 ] && echo "The installation Got Stuck" || \
echo "The Installation Failed"; \
} || \
echo "The installation was successful"; \
echo "Installation process exited with code $exitCode"; \
bash -c "exit $exitCode"; \
echo "The Installation Was Successful"; \
echo "Installation Process Exited With Code $exitCode"; \
return "$exitCode"; \
}; \
display=:90; \
export DISPLAY=$display; \