Fix mkdir dist in build step on windows

This commit is contained in:
Turiiya 2023-08-23 14:02:58 +02:00
parent 0d400644d1
commit b368b819b9
2 changed files with 1 additions and 2 deletions

View File

@ -48,7 +48,6 @@ jobs:
uses: ilammy/msvc-dev-cmd@v1
- name: Build
run: |
mkdir dist
if ('${{ matrix.compiler }}' -eq 'MSVC') {
nmake -f Makefile.nmake
} else {

View File

@ -74,7 +74,7 @@ clean: --clean-$(PLATFORM)
--setup:
# Create build directory
ifeq ($(PLATFORM),windows)
@-$(shell if not exist $(BUILD_DIR) mkdir -p "$(BUILD_DIR)" >nul 2>&1)
@mkdir $(BUILD_DIR) >nul 2>&1 ||:
else
@mkdir -p $(BUILD_DIR)
endif