mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-21 15:10:19 +00:00
DevContainer: Use correct path for vcpkg binary
Now more correct than 7ae7b9b695
This commit is contained in:
parent
85515c0096
commit
3e0c182344
Notes:
github-actions[bot]
2024-11-09 13:19:31 +00:00
Author: https://github.com/ADKaster Commit: https://github.com/LadybirdBrowser/ladybird/commit/3e0c182344d Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/2243
1 changed files with 3 additions and 3 deletions
|
@ -23,15 +23,15 @@ export VCPKG_BINARY_SOURCES="clear;files,${CACHE_DIR},readwrite"
|
||||||
|
|
||||||
# Check options to see which versions we should build
|
# Check options to see which versions we should build
|
||||||
if [ "${RELEASE_TRIPLET}" = "true" ]; then
|
if [ "${RELEASE_TRIPLET}" = "true" ]; then
|
||||||
"./${VCPKG_ROOT}/vcpkg" install --overlay-triplets="${PWD}/Meta/CMake/vcpkg/release-triplets"
|
"${VCPKG_ROOT}/vcpkg" install --overlay-triplets="${PWD}/Meta/CMake/vcpkg/release-triplets"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "${DEBUG_TRIPLET}" = "true" ]; then
|
if [ "${DEBUG_TRIPLET}" = "true" ]; then
|
||||||
"./${VCPKG_ROOT}/vcpkg" install --overlay-triplets="${PWD}/Meta/CMake/vcpkg/debug-triplets"
|
"${VCPKG_ROOT}/vcpkg" install --overlay-triplets="${PWD}/Meta/CMake/vcpkg/debug-triplets"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "${SANITIZER_TRIPLET}" = "true" ]; then
|
if [ "${SANITIZER_TRIPLET}" = "true" ]; then
|
||||||
"./${VCPKG_ROOT}/vcpkg" install --overlay-triplets="${PWD}/Meta/CMake/vcpkg/sanitizer-triplets"
|
"${VCPKG_ROOT}/vcpkg" install --overlay-triplets="${PWD}/Meta/CMake/vcpkg/sanitizer-triplets"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Clean up to reduce layer size
|
# Clean up to reduce layer size
|
||||||
|
|
Loading…
Reference in a new issue