Skip to content

Commit e8bac3d

Browse files
authored
Merge pull request #8 from Guslington/master
bug fix for to_stdout
2 parents fefd455 + bb8b1c3 commit e8bac3d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

aws-env.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,9 @@ func main() {
4444
ExportVariables(path, "", params)
4545
}
4646

47-
evalStdout := strings.ToLower(os.Getenv("EVAL_STDOUT"))
47+
toStdout := strings.ToLower(os.Getenv("TO_STDOUT"))
4848

49-
if evalStdout == "true" {
49+
if toStdout == "true" {
5050
ParametersToStdout(params)
5151
} else {
5252
ParametersToFile(params)

0 commit comments

Comments
 (0)