fix: swap order of arguments on config-get call

This commit is contained in:
Jose Diaz-Gonzalez
2021-02-10 05:23:42 -05:00
parent 169f202994
commit 7c923a0fa1

View File

@@ -127,7 +127,7 @@ func getDokkuAppShell(appName string) string {
return nil
})
errs.Go(func() error {
b, _ := common.PlugnTriggerOutput("config-get", []string{"DOKKU_APP_SHELL", appName}...)
b, _ := common.PlugnTriggerOutput("config-get", []string{appName, "DOKKU_APP_SHELL"}...)
appShell = strings.TrimSpace(string(b[:]))
return nil
})