Skip to content
This repository has been archived by the owner on Sep 16, 2024. It is now read-only.

Commit

Permalink
Add forgotten NOT when adding deb package conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
mgbowen committed Nov 11, 2020
1 parent 85dae67 commit 90d824a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ set(CPACK_DEBIAN_REAL_DEB_GROUP_PACKAGE_CONFLICTS "windows-fido-bridge (<< 1.1.0

# Conflict with all other known sk-api versions.
foreach (ver IN LISTS VALID_SK_API_VERSIONS)
if ("${ver}" EQUAL "${SK_API_VERSION}")
if (NOT "${ver}" EQUAL "${SK_API_VERSION}")
set(CPACK_DEBIAN_REAL_DEB_GROUP_PACKAGE_CONFLICTS
"${CPACK_DEBIAN_REAL_DEB_GROUP_PACKAGE_CONFLICTS}, windows-fido-bridge-skapiv${ver}"
)
Expand Down

0 comments on commit 90d824a

Please sign in to comment.