Remove bazel dev mode

This mode is no longer in use, and is dead code.

Fixes: 282809863
Test: Presubmits
Change-Id: I45ab7d7c9dee153f1cbc66262c2cf9f1e9487a28
This commit is contained in:
Chris Parsons
2023-06-15 04:02:28 +00:00
parent 6e2d59f295
commit 21f80277c3
9 changed files with 9 additions and 52 deletions

View File

@@ -114,15 +114,12 @@ func checkBazelMode(ctx Context, config Config) {
if config.bazelProdMode {
count++
}
if config.bazelDevMode {
count++
}
if config.bazelStagingMode {
count++
}
if count > 1 {
ctx.Fatalln("Conflicting bazel mode.\n" +
"Do not specify more than one of --bazel-mode and --bazel-mode-dev and --bazel-mode-staging ")
"Do not specify more than one of --bazel-mode and --bazel-mode-staging ")
}
}