File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,8 @@ cd "${SCRIPT_DIR}"
30
30
# Build vcpkg
31
31
if [ ! -d " vcpkg" ]; then
32
32
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
34
35
fi
35
36
36
37
export VCPKG_ROOT=" $SCRIPT_DIR /vcpkg"
Original file line number Diff line number Diff line change @@ -30,7 +30,8 @@ cd "${SCRIPT_DIR}"
30
30
# Build vcpkg
31
31
if [ ! -d " vcpkg" ]; then
32
32
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
34
35
fi
35
36
36
37
export VCPKG_ROOT=" $SCRIPT_DIR /vcpkg"
Original file line number Diff line number Diff line change 5
5
REM Build vcpkg
6
6
if not exist " vcpkg\" (
7
7
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
9
10
)
10
11
11
12
set VCPKG_ROOT = %~dp0 /vcpkg
You can’t perform that action at this time.
0 commit comments