Skip to content
Snippets Groups Projects
Commit fef6b5f9 authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

[bootstrap] conda-update before attempting to do anythingelse

parent 50b52829
Branches
Tags
No related merge requests found
Pipeline #52990 failed
...@@ -504,9 +504,10 @@ if __name__ == "__main__": ...@@ -504,9 +504,10 @@ if __name__ == "__main__":
if args.verbose >= 3: if args.verbose >= 3:
conda_verbosity = ["-vv"] conda_verbosity = ["-vv"]
# clean all caches because we may have changed # clean all caches and update, because we may have changed
# the URL address of channels # the URL address of channels
run_cmdline([conda_bin, "clean", "--all"] + conda_verbosity) run_cmdline([conda_bin, "clean", "--all"] + conda_verbosity)
run_cmdline([conda_bin, "update", "--all"] + conda_verbosity)
# print conda information for debugging purposes # print conda information for debugging purposes
run_cmdline([conda_bin, "info"] + conda_verbosity) run_cmdline([conda_bin, "info"] + conda_verbosity)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment