Skip to content
Snippets Groups Projects

Rename initialize_environment function to initialise_environment

Merged Ashwin Kumar Karnad requested to merge rename-initialize_environment-function into main
2 files
+ 7
7
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -1085,7 +1085,7 @@ def environment_status(mpsd_release: str, root_dir: Union[str, Path]) -> dict:
return toolchain_map
def initialize_environment(root_dir: Path) -> None:
def initialise_environment(root_dir: Path) -> None:
"""Initialize the software environment.
This creates a hidden file ``.mpsd-software-root`` to tag the location for
@@ -1258,7 +1258,7 @@ def main():
# Check if the action is init
# if so, call the init function and exit
if args.action == "init":
initialize_environment(Path(os.getcwd()))
initialise_environment(Path(os.getcwd()))
sys.exit(0)
# root_dir is the place where this MPSD software instance has its root
Loading