Skip to content

Commit 94fe0f3

Browse files
committed
Fix vcpkg path
1 parent 42b5c49 commit 94fe0f3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/code-coverage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ jobs:
139139
fi
140140
echo "Using triplet: ${triplet}"
141141
142-
vcpkg_installed=$(find "${{ github.workspace }}/vcpkg" -type d -name "${triplet}" -path "*/vcpkg_installed/*" | head -1)
142+
vcpkg_installed=$(find "${{ github.workspace }}" -type d -name "${triplet}" -path "*/vcpkg_installed/*" | head -1)
143143
if [ -z "$vcpkg_installed" ]; then
144144
echo "ERROR: Could not find vcpkg_installed directory for triplet ${triplet}"
145145
find "${{ github.workspace }}" -type d -name "vcpkg_installed" 2>/dev/null || true
@@ -328,7 +328,7 @@ jobs:
328328
set -xe
329329
triplet="x64-mingw-static"
330330
331-
vcpkg_installed=$(find "${{ github.workspace }}/vcpkg" -type d -name "${triplet}" -path "*/vcpkg_installed/*" | head -1)
331+
vcpkg_installed=$(find "${{ github.workspace }}" -type d -name "${triplet}" -path "*/vcpkg_installed/*" | head -1)
332332
if [ -z "$vcpkg_installed" ]; then
333333
echo "ERROR: Could not find vcpkg_installed directory for triplet ${triplet}"
334334
find "${{ github.workspace }}" -type d -name "vcpkg_installed" 2>/dev/null || true

0 commit comments

Comments
 (0)