Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -666,6 +666,7 @@ sh_binary(
"$(rootpath @buildifier_prebuilt//:buildifier)",
"$(rootpath //bazel:bzl_lint_test.sh)",
"$(rootpath @buildifier_prebuilt//:buildifier)",
"$(rootpath @git)",
],
data = [
"MODULE.bazel",
Expand All @@ -677,5 +678,6 @@ sh_binary(
"//bazel:tclfmt",
"//bazel:tclint",
"@buildifier_prebuilt//:buildifier",
"@git",
],
)
4 changes: 2 additions & 2 deletions bazel/fix_lint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ export BUILD_WORKSPACE_DIRECTORY="${BUILD_WORKSPACE_DIRECTORY:-$PWD}"

# TCL: auto-format then lint
"$1" "$2"
"$3" "$4" || rc=$?
"$3" "$4" "$9" || rc=$?
Comment thread
oharboe marked this conversation as resolved.
Outdated
Comment thread
oharboe marked this conversation as resolved.
Outdated

# Bazel: auto-format then lint
"$5" "$6"
"$7" "$8" || rc=$?
"$7" "$8" "$9" || rc=$?

git -C "$BUILD_WORKSPACE_DIRECTORY" status
Comment thread
oharboe marked this conversation as resolved.
Outdated

Expand Down
Loading