Skip to content

Commit 9b91a5b

Browse files
authored
Merge pull request #979 from pmienk/master
Regenerate with updates.
2 parents 4b8a2c7 + ce27f1e commit 9b91a5b

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
@@ -806,7 +806,7 @@ jobs:
806806

807807
steps:
808808
- name: Add msbuild to PATH
809-
uses: microsoft/setup-msbuild@v2
809+
uses: microsoft/setup-msbuild@v3
810810
with:
811811
msbuild-architecture: x64
812812

install-cmake.sh

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

8989
rm -rf "$DIRECTORY"
90-
mkdir "$DIRECTORY"
90+
mkdir -p "$DIRECTORY"
9191
}
9292

9393
display_heading_message()

install-cmakepresets.sh

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

9595
rm -rf "$DIRECTORY"
96-
mkdir "$DIRECTORY"
96+
mkdir -p "$DIRECTORY"
9797
}
9898

9999
display_heading_message()

install.sh

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

8989
rm -rf "$DIRECTORY"
90-
mkdir "$DIRECTORY"
90+
mkdir -p "$DIRECTORY"
9191
}
9292

9393
display_heading_message()

0 commit comments

Comments
 (0)