Skip to content

Commit 692d228

Browse files
committed
[rust] Build on Windows unless --stamp is used
This should not cause any problems since we upgraded to Bazel 6.3.2
1 parent 4eeed64 commit 692d228

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

common/manager/BUILD.bazel

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

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

3435
exports_files(

0 commit comments

Comments
 (0)