From 6a45cee79f7b0dc575a35eeee033e822dd59ca53 Mon Sep 17 00:00:00 2001 From: utzcoz Date: Sat, 28 Dec 2024 15:20:21 +0800 Subject: [PATCH] Add hint for 'git lfs fetch' It can be used to fetch lfs files if I install git-lfs after checkout. Signed-off-by: utzcoz --- src/conformance/conformance_test/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/conformance/conformance_test/CMakeLists.txt b/src/conformance/conformance_test/CMakeLists.txt index cbc07b7..ccc22e7 100644 --- a/src/conformance/conformance_test/CMakeLists.txt +++ b/src/conformance/conformance_test/CMakeLists.txt @@ -51,7 +51,7 @@ file(STRINGS gltf_examples/VertexColorTest.glb LFS_CHECK_STRINGS) if(LFS_CHECK_STRINGS MATCHES "https://git-lfs[.]github[.]com/spec/v1") message( FATAL_ERROR - "Found a git-lfs pointer file instead of the binary file that should replace it. Please install git-lfs, run 'git lfs install', and 'git lfs checkout'" + "Found a git-lfs pointer file instead of the binary file that should replace it. Please install git-lfs, run 'git lfs install', 'git lfs checkout', and 'git lfs fetch'" ) endif()