Meta: Re-bootstrap vcpkg when we update its version

Fetching package versions that were shipped after vcpkg was last
bootstrapped requires re-bootstrapping vcpkg.
This commit is contained in:
Timothy Flynn
2024-06-22 11:52:25 -04:00
committed by Andreas Kling
parent a3c8e60710
commit 946a09d355
2 changed files with 12 additions and 6 deletions

View File

@@ -127,7 +127,6 @@ build_cmake() {
}
build_vcpkg() {
echo "Building vcpkg"
( cd "$LADYBIRD_SOURCE_DIR/Toolchain" && ./BuildVcpkg.sh )
}
@@ -136,10 +135,7 @@ ensure_toolchain() {
build_cmake
fi
# FIXME: Add a version check if needed.
if [ ! -x "${LADYBIRD_SOURCE_DIR}/Toolchain/Local/vcpkg/bin/vcpkg" ]; then
build_vcpkg
fi
build_vcpkg
}
run_gdb() {