Skip to content

Commit 9456403

Browse files
committed
Fix Bazel BUILD.bazel implicit string concatenation
1 parent 30ca320 commit 9456403

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

BUILD.bazel

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ config_setting(
3838

3939
def _build_rust_cmd(profile):
4040
return (
41-
"$(location :build_rust_ffi) "
42-
"--manifest-path $(location rust/Cargo.toml) "
41+
"$(location :build_rust_ffi) " +
42+
"--manifest-path $(location rust/Cargo.toml) " +
4343
"--profile {profile} --target-dir $(@D)/cargo --output $@"
4444
).format(profile = profile)
4545

0 commit comments

Comments
 (0)