Compare commits

..

2 Commits

Author SHA1 Message Date
Jose Diaz-Gonzalez
78c2d69811 Release 1.20.2 2022-07-06 01:38:16 -04:00
Jose Diaz-Gonzalez
f311936216 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] [plugin]
description = "dokku postgres service plugin" description = "dokku postgres service plugin"
version = "1.20.1" version = "1.20.2"
[plugin.config] [plugin.config]

View File

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