mirror of
https://github.com/QuantumPackage/qp2.git
synced 2024-11-14 01:53:49 +01:00
Merge branch 'dev-lcpq' into dev-lct
This commit is contained in:
commit
7417c736af
@ -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])
|
||||
git_cmd=["git", "clone", url]
|
||||
if arguments["--name"]:
|
||||
git_cmd.append(arguments["--name"])
|
||||
subprocess.check_call(git_cmd)
|
||||
else:
|
||||
filename = url.split('/')[-1]
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user