chore: revert doc change

This commit is contained in:
Jose Diaz-Gonzalez
2025-07-02 01:15:27 -04:00
parent a062e283fe
commit 6a0701fa65
3 changed files with 4 additions and 4 deletions

View File

@@ -25,7 +25,7 @@ fn-domains-clear-app() {
rm -f "$APP_VHOST_PATH"
plugn trigger post-domains-update "$APP" "clear"
dokku_log_info1 "Deleted all domains for $APP"
dokku_log_info1 "Cleared domains in $APP"
}
fn-domains-disable() {

View File

@@ -5,7 +5,7 @@ source "$PLUGIN_CORE_AVAILABLE_PATH/common/functions"
source "$PLUGIN_AVAILABLE_PATH/domains/functions"
cmd-domains-clear() {
declare desc="remove all app domains"
declare desc="clear all app domains"
declare cmd="domains:clear"
[[ "$1" == "$cmd" ]] && shift 1
declare APP="$1"

View File

@@ -5,11 +5,11 @@ source "$PLUGIN_CORE_AVAILABLE_PATH/common/functions"
source "$PLUGIN_AVAILABLE_PATH/domains/functions"
cmd-domains-clear-global() {
declare desc="remove all global domains"
declare desc="clear global domain names"
declare cmd="domains:clear-global"
[[ "$1" == "$cmd" ]] && shift 1
dokku_log_info1_quiet "Deleting global domains"
dokku_log_info1_quiet "Clearing global domains"
domains_clear_global "$@"
}