From cefb1c687f0eab9e665c070007f911e2cc3cdc68 Mon Sep 17 00:00:00 2001 From: belthlemar Date: Thu, 19 Dec 2024 18:12:40 +0100 Subject: [PATCH] fix typo --- src/antares_web_installer/app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/antares_web_installer/app.py b/src/antares_web_installer/app.py index b5ab52a..2917aaf 100644 --- a/src/antares_web_installer/app.py +++ b/src/antares_web_installer/app.py @@ -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