Skip to content

Commit

Permalink
Build - temporarily switch vcpkg to master
Browse files Browse the repository at this point in the history
Need to switch back to a specific tag when things are green again
  • Loading branch information
samaaron committed Apr 12, 2024
1 parent 5b70873 commit 18993d4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion app/linux-pre-vcpkg.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ cd "${SCRIPT_DIR}"
# Build vcpkg
if [ ! -d "vcpkg" ]; then
echo "Cloning vcpkg"
git clone --depth 1 --branch "${VCPKG_BRANCH:-2024.03.25}" https://github.com/microsoft/vcpkg.git vcpkg
# git clone --depth 1 --branch "${VCPKG_BRANCH:-2024.03.25}" https://github.com/microsoft/vcpkg.git vcpkg
git clone --depth 1 --branch master https://github.com/microsoft/vcpkg.git vcpkg
fi

export VCPKG_ROOT="$SCRIPT_DIR/vcpkg"
Expand Down
3 changes: 2 additions & 1 deletion app/mac-pre-vcpkg.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ cd "${SCRIPT_DIR}"
# Build vcpkg
if [ ! -d "vcpkg" ]; then
echo "Cloning vcpkg"
git clone --depth 1 --branch 2024.03.25 https://github.com/microsoft/vcpkg.git vcpkg
# git clone --depth 1 --branch 2024.03.25 https://github.com/microsoft/vcpkg.git vcpkg
git clone --depth 1 --branch master https://github.com/microsoft/vcpkg.git vcpkg
fi

export VCPKG_ROOT="$SCRIPT_DIR/vcpkg"
Expand Down
3 changes: 2 additions & 1 deletion app/win-pre-vcpkg.bat
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ cd %~dp0
REM Build vcpkg
if not exist "vcpkg\" (
echo Cloning vcpkg
git clone --depth 1 --branch 2024.03.25 https://github.com/microsoft/vcpkg.git vcpkg
@REM git clone --depth 1 --branch 2024.03.25 https://github.com/microsoft/vcpkg.git vcpkg
git clone --depth 1 --branch master https://github.com/microsoft/vcpkg.git vcpkg
)

set VCPKG_ROOT=%~dp0/vcpkg
Expand Down

0 comments on commit 18993d4

Please sign in to comment.