Compare commits

...

2 Commits

Author SHA1 Message Date
Jose Diaz-Gonzalez
b2c458bda9 Release 1.17.7 2022-07-06 01:38:10 -04:00
Jose Diaz-Gonzalez
2c26af4bc5 fix: ensure we check if the service exists before entering it 2022-07-06 01:36:40 -04:00
2 changed files with 2 additions and 1 deletions

View File

@@ -1,4 +1,4 @@
[plugin]
description = "dokku mongo service plugin"
version = "1.17.6"
version = "1.17.7"
[plugin.config]

View File

@@ -20,6 +20,7 @@ service-enter-cmd() {
declare SERVICE="$1"
dokku_log_info1_quiet "Filesystem changes may not persist after container restarts"
verify_service_name "$SERVICE"
service_enter "$SERVICE" "${@:2}"
}