diff --git a/bob/devtools/bootstrap.py b/bob/devtools/bootstrap.py index c0d59cdfc73377f5377a144625dad60444563588..f3762f8262bc3ff1e5ab7a45bf4a6660a061d5a3 100644 --- a/bob/devtools/bootstrap.py +++ b/bob/devtools/bootstrap.py @@ -525,16 +525,15 @@ if __name__ == "__main__": elif args.command == "channel": # installs from channel - channels, _ = ( - get_channels( - public=True, - stable=(args.tag is not None), - server=_SERVER, - intranet=True, - group="bob", - ) - + ("defaults",) + channels, _ = get_channels( + public=True, + stable=(args.tag is not None), + server=_SERVER, + intranet=True, + group="bob", ) + + channels += ["defaults"] channels = ["--override-channels"] + ["--channel=%s" % k for k in channels] conda_cmd = "install" if args.envname in ("base", "root") else "create" cmd = (