Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ FetchContent_Declare(
execution
# FETCHCONTENT_SOURCE_DIR_EXECUTION ${CMAKE_SOURCE_DIR}/../execution
GIT_REPOSITORY https://github.com/bemanproject/execution
GIT_TAG 3650634
GIT_TAG 09d5a5c
Copy link

Copilot AI Mar 23, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

GIT_TAG is pinned to a short SHA (09d5a5c). Short SHAs can become ambiguous as the upstream repo grows, which can break FetchContent clones and also makes it harder to trace what version is being consumed. Prefer pinning to an immutable release tag (e.g., 0.2.0/v0.2.0 if available) or at least the full 40-character commit SHA, and ensure it corresponds to the 0.2.0 EXACT version expected below.

Suggested change
GIT_TAG 09d5a5c
GIT_TAG v0.2.0

Copilot uses AI. Check for mistakes.
SYSTEM
FIND_PACKAGE_ARGS
0.2.0
Expand Down
Loading