Skip to content
Snippets Groups Projects
Unverified Commit c9ef3a9f authored by René Fritze's avatar René Fritze
Browse files

-m [ci] really (?!) fix env var treatment

parent 24104be3
No related branches found
No related tags found
No related merge requests found
...@@ -10,4 +10,4 @@ with open(env_file, 'wt') as env: ...@@ -10,4 +10,4 @@ with open(env_file, 'wt') as env:
for k,v in os.environ.items(): for k,v in os.environ.items():
for pref in prefixes: for pref in prefixes:
if k.startswith(pref): if k.startswith(pref):
env.write('{}="{}"\n'.format(k,v)) env.write('{}={}\n'.format(k,v))
\ No newline at end of file \ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment