Skip to content

Commit

Permalink
Fix stupid Bash nonsense
Browse files Browse the repository at this point in the history
  • Loading branch information
punmechanic committed Dec 12, 2024
1 parent c2bb876 commit df22767
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion command/credentials.go
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ func (c *CloudCredentials) ValidUntil(account *Account, dur time.Duration) bool
type bashWriter struct{}

func (bashWriter) ExportEnvironmentVariable(w io.Writer, key, value string) (int, error) {
return fmt.Fprintf(w, "export %s=%q\n", key, value)
return fmt.Fprintf(w, "export %s=%s\n", key, value)
}

type powershellWriter struct{}
Expand Down

0 comments on commit df22767

Please sign in to comment.