Browse Source

Remove command string

pull/20/head
Daniel Gyulai 3 years ago
parent
commit
40d9848fec
  1. 2
      alice-ci/src/alice/runners/pypirunner.py

2
alice-ci/src/alice/runners/pypirunner.py

@ -148,8 +148,6 @@ class PyPiRunner():
if len(to_upload) == 0:
return
command += to_upload
print(command)
print(" ".join(command))
with subprocess.Popen(command, cwd=config.workdir, stdout=subprocess.PIPE, stderr=subprocess.PIPE) as p:
p.wait()
if p.returncode != 0:

Loading…
Cancel
Save