10
0
mirror of https://github.com/QuantumPackage/qp2.git synced 2024-06-26 15:12:19 +02:00

Add the posiblity to set custom name when we download git repo

This commit is contained in:
Mickaël Véril 2019-03-23 12:51:53 +01:00
parent 8709ea8202
commit 43f921fffb

View File

@ -3,7 +3,7 @@
"""
Usage:
qp_plugins list [-iuq]
qp_plugins download <url>
qp_plugins download <url> [-n <name>]
qp_plugins install <name>...
qp_plugins uninstall <name>
qp_plugins create -n <name> [-r <repo>] [<needed_modules>...]
@ -186,7 +186,10 @@ def main(arguments):
url.endswith(".zip"))
os.chdir(QP_PLUGINS)
if is_repo:
subprocess.check_call(["git", "clone", url])
cmd=["git", "clone", url]
if arguments["--name"]:
cmd=cmd+[arguments["--name"]]
subprocess.check_call(cmd)
else:
filename = url.split('/')[-1]