Skip to content

Commit

Permalink
fix: Adding back default VFS install location for find_fus3 (#91)
Browse files Browse the repository at this point in the history
Signed-off-by: Nathan Matthews <natmatn@amazon.com>
  • Loading branch information
natmatn committed Oct 25, 2023
1 parent e6b20e6 commit a450090
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/deadline/job_attachments/fus3.py
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ def find_fus3(cls) -> Union[os.PathLike, str]:
environ_check = os.environ[FUS3_PATH_ENV_VAR] + f"/bin/{exe}"
else:
log.info(f"{FUS3_PATH_ENV_VAR} and {DEADLINE_VFS_ENV_VAR} env vars not set")
environ_check = ""
environ_check = EXE_TO_INSTALL_PATH[exe] + f"/bin/{exe}"
if os.path.exists(environ_check):
log.info(f"Environ check found {exe} at {environ_check}")
found_path = environ_check
Expand Down

0 comments on commit a450090

Please sign in to comment.