[CONFORMANCE] Fix condition for WIN in Conformance runner (#14441)

This commit is contained in:
Irina Efode 2022-12-06 19:14:05 +03:00 committed by GitHub
parent 6da95784c7
commit eb19a7f7ad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ SUBGRAPH_DUMPER_BIN_NAME = "subgraphsDumper"
DEBUG_DIR = "Debug"
RELEASE_DIR = "Release"
IS_WIN = "windows" or "win32" in platform
IS_WIN = "windows" in platform or "win32" in platform
OS_SCRIPT_EXT = ".bat" if IS_WIN else ""
OS_BIN_FILE_EXT = ".exe" if IS_WIN else ""