Skip to content

Commit

Permalink
Double quotes during exporting vars to env added
Browse files Browse the repository at this point in the history
  • Loading branch information
wobondar committed Jun 11, 2018
1 parent bc6a289 commit 8f0e9ed
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions src/command_dotenv.go
Original file line number Diff line number Diff line change
Expand Up @@ -176,11 +176,10 @@ func (c *DotEnvCommand) printEnvVars() {

func (c *DotEnvCommand) printExportEnvVars() {
for k, v := range c.dotEnvMap {
c.log.Printf("export %s=%s\n", k, v)
c.log.Printf("export %s=\"%s\"\n", k, v)
}
}


func (c *DotEnvCommand) processDotEnv() error {
var ssmVars []ssmVar

Expand Down
2 changes: 1 addition & 1 deletion src/main.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package main

const Version = "v0.2.1"
const Version = "v0.2.2"

const CiEnvVar = "CI"
const TerraformEnvVar = "TF_ENV"
Expand Down

0 comments on commit 8f0e9ed

Please # to comment.