hound comments

This commit is contained in:
Alexey Bogomolov 2023-03-08 02:35:00 +03:00
parent e1950a175f
commit 39e6943746
2 changed files with 4 additions and 2 deletions

View file

@ -106,4 +106,5 @@ class FusionCopyPrefsPrelaunch(PreLaunchHook):
# to define where it can read custom scripts and tools from
fusion_profile_dir_variable = f"FUSION{VERSION}_PROFILE_DIR"
self.log.info(f"Setting {fusion_profile_dir_variable}: {fusion_profile_dir}") # noqa
self.launch_context.env[fusion_profile_dir_variable] = str(fusion_profile_dir) # noqa
self.launch_context.env[fusion_profile_dir_variable] = str(fusion_profile_dir) # noqa

View file

@ -63,4 +63,5 @@ class FusionPrelaunch(PreLaunchHook):
master_prefs_variable = f"FUSION{VERSION}_MasterPrefs"
master_prefs = Path(FUSION_HOST_DIR, "deploy", "fusion_shared.prefs")
self.log.info(f"Setting {master_prefs_variable}: {master_prefs}")
self.launch_context.env[master_prefs_variable] = str(master_prefs)
self.launch_context.env[master_prefs_variable] = str(master_prefs)