Skip to content

Commit 235bc94

Browse files
committed
Avoid building Rust code on Windows with Bazel: it is never happy
1 parent da9a4fb commit 235bc94

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

common/manager/BUILD.bazel

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,11 @@ alias(
2424
}),
2525
)
2626

27+
# TODO: When Rust compiles nicely on Windows, use the same stamping
28+
# logic as the other rules
2729
alias(
2830
name = "selenium-manager-windows",
29-
actual = select({
30-
"//common:stamp": "windows/selenium-manager.exe",
31-
"//conditions:default": "//rust:selenium-manager-windows",
32-
}),
31+
actual = "windows/selenium-manager.exe",
3332
)
3433

3534
exports_files(

0 commit comments

Comments
 (0)