Skip to content

Commit

Permalink
sdk.bzl: include go.env since 1.21.0 (#3666)
Browse files Browse the repository at this point in the history
* sdk.bzl: include go.env since 1.21.0

Include go.env file in the root of the sdk repo starting from Go 1.21.0.

* use glob instead

* Revert "use glob instead"

This reverts commit 4b0181a.

* Revert "Revert "use glob instead""

This reverts commit 7edb61c.

* use separate glob
  • Loading branch information
sluongng authored Aug 17, 2023
1 parent 139ec3c commit 478c5e9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion go/private/BUILD.sdk.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,10 @@ filegroup(
"bin/go*",
"src/**",
"pkg/**",
]),
]) + glob(
["go.env*"],
allow_empty = True,
),
)

exports_files(
Expand Down

0 comments on commit 478c5e9

Please sign in to comment.