We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92ee0aa commit a1bffffCopy full SHA for a1bffff
swift/BUILD.bazel
@@ -33,6 +33,7 @@ pkg_filegroup(
33
srcs = [
34
":dbscheme_files",
35
":manifest",
36
+ "//swift/downgrades",
37
"//swift/tools",
38
],
39
visibility = ["//visibility:public"],
swift/downgrades/BUILD.bazel
@@ -0,0 +1,12 @@
1
+load("@rules_pkg//:mappings.bzl", "pkg_files", "strip_prefix")
2
+
3
+pkg_files(
4
+ name = "downgrades",
5
+ srcs = glob(
6
+ ["**"],
7
+ exclude = ["BUILD.bazel"],
8
+ ),
9
+ prefix = "downgrades",
10
+ strip_prefix = strip_prefix.from_pkg(),
11
+ visibility = ["//swift:__pkg__"],
12
+)
0 commit comments