We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a83d1a commit aa72013Copy full SHA for aa72013
1 file changed
bench_runner/scripts/install.py
@@ -7,7 +7,6 @@
7
import functools
8
import io
9
from pathlib import Path
10
-import shlex
11
import shutil
12
import sys
13
from typing import Any
@@ -142,8 +141,7 @@ def generate__benchmark(src: Any) -> Any:
142
141
"name": "Setup environment",
143
"run": LiteralScalarString(
144
"\n".join(
145
- f'echo "{key}={shlex.quote(val)}" >> {github_env}'
146
- for key, val in vars.items()
+ f'echo "{key}={val}" >> {github_env}' for key, val in vars.items()
147
)
148
),
149
}
0 commit comments