We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9704dc5 commit 394b696Copy full SHA for 394b696
variables.go
@@ -147,7 +147,7 @@ func (e *Executor) getVariables(call Call) (Vars, error) {
147
resolveShell := func(dest Vars, keys []string) error {
148
for _, k := range keys {
149
v := dest[k]
150
- static, err := e.handleDynamicVariableContent(v)
+ static, err := e.handleShVar(v)
151
if err != nil {
152
return err
153
}
@@ -193,7 +193,7 @@ func getEnvironmentVariables() Vars {
193
return m
194
195
196
-func (e *Executor) handleDynamicVariableContent(v Var) (string, error) {
+func (e *Executor) handleShVar(v Var) (string, error) {
197
if v.Static != "" {
198
return v.Static, nil
199
0 commit comments