From ee8ec3c46d356565e769cf8f5540b0cbc357059a Mon Sep 17 00:00:00 2001 From: Gonzalo Diaz Date: Wed, 11 Sep 2024 15:09:42 -0300 Subject: [PATCH] [BUGFIX] [CONFIG] [Makefile] /usr/local/share/vcpkg/.vcpkg-root: error: Failed to take the filesystem lock Device or resource busy https://github.com/microsoft/vcpkg/issues/22129#issuecomment-998467949 --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index f00b36d..0dcd1af 100644 --- a/Makefile +++ b/Makefile @@ -56,8 +56,8 @@ build: dependencies cmake --build build --verbose dependencies: - vcpkg integrate install - vcpkg install + vcpkg --x-wait-for-lock integrate install + vcpkg --x-wait-for-lock install lint/markdown: markdownlint '**/*.md' && echo '✔ Your code looks good.'