You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
returnfmt.Sprintf("No config variables found for the project %q.", projectName), nil
59
+
returnfmt.Sprintf("No config variables found for the project %q in stack %q.", projectName, sc.Stack.Name), nil
60
60
}
61
61
62
62
configNames:=make([]string, numConfigs)
63
63
copy(configNames, config.Names)
64
64
65
-
returnfmt.Sprintf("Here is the list of config variables for the project %q: %v", projectName, strings.Join(configNames, ", ")), nil
65
+
returnfmt.Sprintf("Here is the list of config variables for the project %q in stack %q: %v", projectName, sc.Stack.Name, strings.Join(configNames, ", ")), nil
0 commit comments