Skip to content

Commit

Permalink
chore: remove extra quotation marks in env file build
Browse files Browse the repository at this point in the history
  • Loading branch information
vindard committed Jan 9, 2024
1 parent a3bb491 commit 6d5fbab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion toolchains/workspace-pnpm/macros.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -1037,7 +1037,7 @@ def dict_to_env_string(input_dict):

# TODO: handle different types of 'value' instead of casting everything to string
for key, value in input_dict.items():
env_strings.append('export ' + key +'="' + str(value) + '"')
env_strings.append('export ' + key +'=' + str(value))

return '\n'.join(env_strings)

Expand Down

0 comments on commit 6d5fbab

Please sign in to comment.