diff --git a/mpsd-software.py b/mpsd-software.py index a8f09c729ada54ca2d531a65ec9385832d0e38a1..8bb78961cd3b8e0e04eb958483a45379095b012b 100755 --- a/mpsd-software.py +++ b/mpsd-software.py @@ -818,7 +818,6 @@ def install_environment( mpsd_release: str, toolchains: List[str], root_dir: Path, - # force_reinstall: bool = False, enable_build_cache: bool = False, ) -> None: """ @@ -1119,7 +1118,7 @@ def main(): start_new_environment(args.from_release, args.to_release, root_dir) elif args.action == "install": install_environment( - args.release, args.toolchains, root_dir, False, args.enable_build_cache + args.release, args.toolchains, root_dir, args.enable_build_cache ) elif args.action == "status": _ = environment_status(args.release, root_dir)