9
1
mirror of https://github.com/QuantumPackage/qp2.git synced 2024-06-23 04:52:05 +02:00

Merge pull request #29 from mveril/repo-custom-name

Add the posiblity to set custom name when we download git repo
This commit is contained in:
Anthony Scemama 2019-03-23 16:08:15 +01:00 committed by GitHub
commit 832dbe10fa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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]