Skip to content

Commit 18993d4

Browse files
committed
Build - temporarily switch vcpkg to master
Need to switch back to a specific tag when things are green again
1 parent 5b70873 commit 18993d4

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

app/linux-pre-vcpkg.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ cd "${SCRIPT_DIR}"
3030
# Build vcpkg
3131
if [ ! -d "vcpkg" ]; then
3232
echo "Cloning vcpkg"
33-
git clone --depth 1 --branch "${VCPKG_BRANCH:-2024.03.25}" https://github.com/microsoft/vcpkg.git vcpkg
33+
# git clone --depth 1 --branch "${VCPKG_BRANCH:-2024.03.25}" https://github.com/microsoft/vcpkg.git vcpkg
34+
git clone --depth 1 --branch master https://github.com/microsoft/vcpkg.git vcpkg
3435
fi
3536

3637
export VCPKG_ROOT="$SCRIPT_DIR/vcpkg"

app/mac-pre-vcpkg.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ cd "${SCRIPT_DIR}"
3030
# Build vcpkg
3131
if [ ! -d "vcpkg" ]; then
3232
echo "Cloning vcpkg"
33-
git clone --depth 1 --branch 2024.03.25 https://github.com/microsoft/vcpkg.git vcpkg
33+
# git clone --depth 1 --branch 2024.03.25 https://github.com/microsoft/vcpkg.git vcpkg
34+
git clone --depth 1 --branch master https://github.com/microsoft/vcpkg.git vcpkg
3435
fi
3536

3637
export VCPKG_ROOT="$SCRIPT_DIR/vcpkg"

app/win-pre-vcpkg.bat

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ cd %~dp0
55
REM Build vcpkg
66
if not exist "vcpkg\" (
77
echo Cloning vcpkg
8-
git clone --depth 1 --branch 2024.03.25 https://github.com/microsoft/vcpkg.git vcpkg
8+
@REM git clone --depth 1 --branch 2024.03.25 https://github.com/microsoft/vcpkg.git vcpkg
9+
git clone --depth 1 --branch master https://github.com/microsoft/vcpkg.git vcpkg
910
)
1011

1112
set VCPKG_ROOT=%~dp0/vcpkg

0 commit comments

Comments
 (0)