mirror of
https://github.com/QuantumPackage/qp2.git
synced 2024-11-07 05:53:37 +01:00
Merge pull request #30 from mveril/cleaning-qp-plugins-download
Cleaning qp_plugins code for download git repo
This commit is contained in:
commit
98f46b3cee
@ -186,10 +186,10 @@ def main(arguments):
|
||||
url.endswith(".zip"))
|
||||
os.chdir(QP_PLUGINS)
|
||||
if is_repo:
|
||||
cmd=["git", "clone", url]
|
||||
git_cmd=["git", "clone", url]
|
||||
if arguments["--name"]:
|
||||
cmd=cmd+[arguments["--name"]]
|
||||
subprocess.check_call(cmd)
|
||||
git_cmd.append(arguments["--name"])
|
||||
subprocess.check_call(git_cmd)
|
||||
else:
|
||||
filename = url.split('/')[-1]
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user