mirror of
https://github.com/dokku/dokku.git
synced 2025-12-29 00:25:08 +01:00
chore: update two more calls to fetch all apps
This commit is contained in:
@@ -153,7 +153,7 @@ func CommandSetProperty(appName string, property string, value string) error {
|
||||
return common.PlugnTrigger("post-stack-set", []string{appName, value}...)
|
||||
}
|
||||
|
||||
apps, err := common.DokkuApps()
|
||||
apps, err := apps.DokkuApps()
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
@@ -8,9 +8,8 @@ trigger-domains-install() {
|
||||
declare trigger="install"
|
||||
|
||||
shopt -s nullglob
|
||||
for app in $DOKKU_ROOT/*/CONTAINER; do
|
||||
APP=$(basename "$(dirname "$app")")
|
||||
domains_setup "$APP"
|
||||
for app in $(dokku_apps); do
|
||||
domains_setup "$app"
|
||||
done
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user