Skip to content

Commit

Permalink
Swift: fix windows build again
Browse files Browse the repository at this point in the history
  • Loading branch information
redsun82 committed May 28, 2024
1 parent fe9a153 commit f7bfe43
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions swift/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,12 @@ codeql_pack(
"//swift/downgrades",
],
visibility = ["//visibility:public"],
zips = {
"//swift/third_party/resource-dir": "resource-dir/{CODEQL_PLATFORM}",
},
zips = select({
"@platforms//os:windows": {},
"//conditions:default": {
"//swift/third_party/resource-dir": "resource-dir/{CODEQL_PLATFORM}",
},
}),
)

alias(
Expand Down

0 comments on commit f7bfe43

Please sign in to comment.