Skip to content

Commit a50704f

Browse files
authored
Merge pull request #748 from pmienk/master
Regenerate with updates.
2 parents 07d6707 + d484daa commit a50704f

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -441,9 +441,9 @@ jobs:
441441
echo "CMAKE_LIBRARY_PATH=/usr/local/lib" >> $GITHUB_ENV
442442
fi
443443
if [[ ${{ matrix.assert }} == 'ndebug' ]]; then
444-
echo "ASSERT_NDEBUG=--enable-ndebug -Denable-ndebug=yes" >> $GITHUB_ENV
444+
echo "ASSERT_NDEBUG=--enable-ndebug" >> $GITHUB_ENV
445445
else
446-
echo "ASSERT_NDEBUG=--disable-ndebug -Denable-ndebug=no" >> $GITHUB_ENV
446+
echo "ASSERT_NDEBUG=--disable-ndebug" >> $GITHUB_ENV
447447
fi
448448
if [[ ${{ matrix.link }} == 'dynamic' ]]; then
449449
echo "LINKAGE=--disable-static" >> $GITHUB_ENV
@@ -673,9 +673,9 @@ jobs:
673673
echo "CMAKE_LIBRARY_PATH=/usr/local/lib" >> $GITHUB_ENV
674674
fi
675675
if [[ ${{ matrix.assert }} == 'ndebug' ]]; then
676-
echo "ASSERT_NDEBUG=--enable-ndebug -Denable-ndebug=yes" >> $GITHUB_ENV
676+
echo "ASSERT_NDEBUG=--enable-ndebug" >> $GITHUB_ENV
677677
else
678-
echo "ASSERT_NDEBUG=--disable-ndebug -Denable-ndebug=no" >> $GITHUB_ENV
678+
echo "ASSERT_NDEBUG=--disable-ndebug" >> $GITHUB_ENV
679679
fi
680680
if [[ ${{ matrix.link }} == 'dynamic' ]]; then
681681
echo "LINKAGE=--disable-static" >> $GITHUB_ENV
@@ -818,7 +818,7 @@ jobs:
818818

819819
steps:
820820
- name: Add msbuild to PATH
821-
uses: microsoft/setup-msbuild@v2
821+
uses: microsoft/setup-msbuild@v3
822822
with:
823823
msbuild-architecture: x64
824824

install-cmake.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ create_directory()
8585
local DIRECTORY="$1"
8686

8787
rm -rf "$DIRECTORY"
88-
mkdir "$DIRECTORY"
88+
mkdir -p "$DIRECTORY"
8989
}
9090

9191
display_heading_message()

install-cmakepresets.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ create_directory()
9191
local DIRECTORY="$1"
9292

9393
rm -rf "$DIRECTORY"
94-
mkdir "$DIRECTORY"
94+
mkdir -p "$DIRECTORY"
9595
}
9696

9797
display_heading_message()

install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ create_directory()
8585
local DIRECTORY="$1"
8686

8787
rm -rf "$DIRECTORY"
88-
mkdir "$DIRECTORY"
88+
mkdir -p "$DIRECTORY"
8989
}
9090

9191
display_heading_message()

0 commit comments

Comments
 (0)