Skip to content

Commit 1adca3f

Browse files
scripts: add py_binary target for spdx_to_github_snapshot (#2)
1 parent 0db176c commit 1adca3f

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

scripts/BUILD.bazel

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# SPDX-License-Identifier: Apache-2.0
1212
# *******************************************************************************
1313

14-
load("@rules_python//python:defs.bzl", "py_library")
14+
load("@rules_python//python:defs.bzl", "py_binary", "py_library")
1515

1616
package(default_visibility = ["//visibility:public"])
1717

@@ -33,3 +33,9 @@ py_library(
3333
name = "spdx_to_github_snapshot",
3434
srcs = ["spdx_to_github_snapshot.py"],
3535
)
36+
37+
py_binary(
38+
name = "spdx_to_github_snapshot_bin",
39+
srcs = ["spdx_to_github_snapshot.py"],
40+
main = "spdx_to_github_snapshot.py",
41+
)

0 commit comments

Comments
 (0)