Skip to content

Commit 306c2cd

Browse files
Merge branch 'main' into cargo-zigbuild
2 parents 5c5944e + 1a3453c commit 306c2cd

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,5 +54,5 @@ jobs:
5454
./llrt-lambda-arm64.zip
5555
./llrt-linux-x64.zip
5656
./llrt-linux-arm64.zip
57-
./lrt-darwin-x64.zip
57+
./llrt-darwin-x64.zip
5858
./llrt-darwin-arm64.zip

Makefile

-1
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,6 @@ test-ci: clean-js | toolchain js
146146
$(CARGO_TEST_CMD) $(TOOLCHAIN) -Z panic-abort-tests test --target $(CURRENT_TARGET)
147147
$(CARGO_TEST_CMD) $(TOOLCHAIN) run -r --target $(CURRENT_TARGET) -- test -d bundle
148148

149-
150149
libs-arm64: lib/arm64/libzstd.a lib/zstd.h
151150
libs-x64: lib/x64/libzstd.a lib/zstd.h
152151

src/console.rs

+5
Original file line numberDiff line numberDiff line change
@@ -545,8 +545,13 @@ fn format_values_internal<'js>(
545545
tty: bool,
546546
newline_char: char,
547547
) -> Result<()> {
548+
let mut write_space = false;
548549
for arg in args.0.into_iter() {
550+
if write_space {
551+
result.push(' ');
552+
}
549553
stringify_value(result, ctx, arg, tty, newline_char)?;
554+
write_space = true
550555
}
551556
Ok(())
552557
}

0 commit comments

Comments
 (0)