Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinBelthle committed Dec 19, 2024
1 parent 2adce82 commit cefb1c6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/antares_web_installer/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@
Path("local_workspace"),
}

POSIX_EXCLUDED_FILES = COMMON_EXCLUDED_RESOURCES | {"AntaresWebInstallerCLI"}
WINDOWS_EXCLUDED_FILES = COMMON_EXCLUDED_RESOURCES | {"AntaresWebInstaller.exe"}
POSIX_EXCLUDED_FILES = COMMON_EXCLUDED_RESOURCES | {Path("AntaresWebInstallerCLI")}
WINDOWS_EXCLUDED_FILES = COMMON_EXCLUDED_RESOURCES | {Path("AntaresWebInstaller.exe")}
EXCLUDED_ROOT_RESOURCES = POSIX_EXCLUDED_FILES if os.name == "posix" else WINDOWS_EXCLUDED_FILES


Expand Down

0 comments on commit cefb1c6

Please sign in to comment.