Skip to content

Commit

Permalink
Merge pull request #8 from Guslington/master
Browse files Browse the repository at this point in the history
bug fix for to_stdout
  • Loading branch information
Guslington committed Mar 19, 2019
2 parents fefd455 + bb8b1c3 commit e8bac3d
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 e8bac3d

Please sign in to comment.