feat: execute motd at the end of the install

This should prompt users to complete the install as normal.
This commit is contained in:
Jose Diaz-Gonzalez
2021-08-07 18:34:19 -04:00
parent ca680c3aeb
commit df02a1c1cc

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 "$@"