Skip to content

Commit 3bcf945

Browse files
committed
checkpoint functioning version
1 parent b770c9a commit 3bcf945

2 files changed

Lines changed: 8 additions & 3 deletions

File tree

language/starlarkrepository/language.go

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,12 @@ type starlarkRepositoryLang struct {
9898
// binary.
9999
func NewLanguage() language.Language {
100100
return &starlarkRepositoryLang{
101-
excludeDirs: []string{"javatests", "testdata"},
101+
excludeDirs: []string{
102+
"docs",
103+
"javatests",
104+
"testdata",
105+
"tests",
106+
},
102107
}
103108
}
104109

rules/private/proto_repository_tools.bzl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,11 +68,11 @@ def _proto_repository_tools_impl(ctx):
6868
ctx.path(ctx.attr._list_repository_tools_srcs),
6969
"-dir=src/github.com/stackb/rules_proto",
7070
# Run it under 'check' to assert file is up-to-date
71-
# "-check=rules/private/proto_repository_tools_srcs.bzl",
71+
"-check=rules/private/proto_repository_tools_srcs.bzl",
7272
# Run it under 'skip' to not check (only for internal testing)
7373
# "-skip=rules/private/proto_repository_tools_srcs.bzl",
7474
# Run it under 'generate' to recreate the list
75-
"-generate=rules/private/proto_repository_tools_srcs.bzl",
75+
# "-generate=rules/private/proto_repository_tools_srcs.bzl",
7676
],
7777
environment = env,
7878
)

0 commit comments

Comments
 (0)