Skip to content

Commit

Permalink
bug fix for to_stdout
Browse files Browse the repository at this point in the history
  • Loading branch information
Guslington committed Mar 19, 2019
1 parent 0abcda6 commit bb8b1c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions aws-env.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ func main() {
ExportVariables(path, "", params)
}

evalStdout := strings.ToLower(os.Getenv("EVAL_STDOUT"))
toStdout := strings.ToLower(os.Getenv("TO_STDOUT"))

if evalStdout == "true" {
if toStdout == "true" {
ParametersToStdout(params)
} else {
ParametersToFile(params)
Expand Down

0 comments on commit bb8b1c3

Please sign in to comment.