Skip to content

Commit

Permalink
remove surrounding quotes from env var
Browse files Browse the repository at this point in the history
  • Loading branch information
elbandito committed May 9, 2019
1 parent 97e95ec commit 67411ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exports.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ func DumpExportsFile(exportsData, envDir string) error {

for _, line := range lines {
if found, key, value := ParseExportsFileLine(line); found {
err := WriteEnvFile(envDir, key, value)
err := WriteEnvFile(envDir, key, value[1 : len(value)-1])
if err != nil {
return err
}
Expand Down

0 comments on commit 67411ae

Please sign in to comment.