Skip to content
Snippets Groups Projects
Commit c418db2a authored by Amir MOHAMMADI's avatar Amir MOHAMMADI
Browse files

Merge branch 'update-specs' into 'master'

[bootstrap] use --update-specs during conda install

See merge request !136
parents 816f2c51 5ad38c33
No related branches found
No related tags found
1 merge request!136[bootstrap] use --update-specs during conda install
Pipeline #36174 passed
......@@ -535,12 +535,13 @@ if __name__ == "__main__":
"--channel=%s" % k for k in channels
]
conda_cmd = "install" if args.envname in ("base", "root") else "create"
run_cmdline(
[conda_bin, conda_cmd]
+ conda_verbosity
+ channels
+ ["-n", args.envname, "bob.devtools"]
)
cmd = ([conda_bin, conda_cmd]
+ conda_verbosity
+ channels
+ ["-n", args.envname, "bob.devtools"])
if conda_cmd == "install":
cmd += ["--update-specs"]
run_cmdline(cmd)
# print conda information for debugging purposes
run_cmdline([conda_bin, "info"] + conda_verbosity)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment