Skip to content
This repository has been archived by the owner on Mar 3, 2023. It is now read-only.

Commit

Permalink
[Build] switched <resources> to <data> attribute
Browse files Browse the repository at this point in the history
There is no direct translation for this. It also appears that newer versions of <bazel_rules_pex> have switched to calling this <data> which aligns with <py_binary>.
  • Loading branch information
surahman committed Jan 26, 2022
1 parent 0518955 commit 7a809e8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion heron/shell/src/python/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ py_binary(
name = "heron-shell",
main = "main.py",
srcs = ["main.py"],
resources = [
data = [
"//heron/shell/assets",
],
deps = [
Expand Down
2 changes: 1 addition & 1 deletion heron/tools/ui/src/python/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ py_binary(
name = "heron-ui",
main = "main.py",
srcs = ["main.py"],
resources = [
data = [
"//heron/tools/ui/resources:static",
"//heron/tools/ui/resources:templates",
"//scripts/packages:release_files",
Expand Down

0 comments on commit 7a809e8

Please sign in to comment.