Skip to content

Commit b671374

Browse files
author
Gonzalo Diaz
committed
[CONFIG] [github actions] vcpkg installation issue fixed.
1 parent 209ad71 commit b671374

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/c-macos.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,12 @@ jobs:
2626
run: |
2727
export VCPKG_VERSION=2024.12.16
2828
brew install vcpkg
29-
git clone --depth 1 --branch $VCPKG_VERSION https://github.com/microsoft/vcpkg.git --single-branch "$HOME/vcpkg"
29+
git clone \
30+
--depth 1 \
31+
--branch $VCPKG_VERSION \
32+
https://github.com/microsoft/vcpkg.git \
33+
--single-branch \
34+
"$HOME/vcpkg"
3035
export VCPKG_ROOT="$HOME/vcpkg"
3136
sh $VCPKG_ROOT/bootstrap-vcpkg.sh
3237
echo "VCPKG_ROOT=$HOME/vcpkg" >> $GITHUB_ENV

0 commit comments

Comments
 (0)