Merge pull request #4730 from dokku/execute-motd

Execute motd at the end of the install
This commit is contained in:
Jose Diaz-Gonzalez
2021-08-07 19:18:53 -04:00
committed by GitHub

View File

@@ -268,6 +268,10 @@ main() {
ensure-environment
install-requirements
install-dokku
if [[ -f /etc/update-motd.d/99-dokku ]]; then
/etc/update-motd.d/99-dokku || true
fi
}
main "$@"