Skip to content

Commit b745f2c

Browse files
committed
update go-api-parser invocation in params.py
1 parent f021b5a commit b745f2c

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

params.py

+6-4
Original file line numberDiff line numberDiff line change
@@ -195,12 +195,14 @@ def recursive_dir_chmod(path, mode):
195195

196196

197197
def run_api_parser(api_parser, dep_dir, version):
198-
env = os.environ.copy()
199-
env['version'] = version
200198
with tempfile.NamedTemporaryFile() as json_file:
201199
p = subprocess.Popen(
202-
[api_parser, dep_dir, json_file.name],
203-
env=env,
200+
[
201+
api_parser,
202+
'-src', dep_dir,
203+
'-out', json_file.name,
204+
'-version', version,
205+
],
204206
)
205207
if p.wait() != 0:
206208
raise Exception('failed to get dep info')

0 commit comments

Comments
 (0)