Capitalize log messages
This commit is contained in:
parent
14bbdbdc71
commit
56601510e2
10
Dockerfile
10
Dockerfile
|
@ -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; \
|
||||
|
|
Loading…
Reference in a new issue