Skip to content

Commit d750b54

Browse files
committed
chore: minor justfile adjustments
1 parent 17132a7 commit d750b54

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

justfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ ci_mode := if env('CI', '') != '' {'1'} else {''}
1414
binstall_args := if env('CI', '') != '' {'--no-confirm --no-track --disable-telemetry'} else {''}
1515
export RUSTFLAGS := env('RUSTFLAGS', if ci_mode == '1' {'-D warnings'} else {''})
1616
export RUSTDOCFLAGS := env('RUSTDOCFLAGS', if ci_mode == '1' {'-D warnings'} else {''})
17-
export RUST_BACKTRACE := env('RUST_BACKTRACE', if ci_mode == '1' {'1'} else {''})
17+
export RUST_BACKTRACE := env('RUST_BACKTRACE', if ci_mode == '1' {'1'} else {'0'})
1818

1919
@_default:
20-
{{just_executable()}} --list
20+
{{quote(just_executable())}} --list
2121

2222
# Run integration tests and save its output as the new expected output
2323
bless *args: (cargo-install 'cargo-insta')
@@ -64,7 +64,7 @@ docs *args='--open':
6464
env-info:
6565
@echo "Running for '{{main_crate}}' crate {{if ci_mode == '1' {'in CI mode'} else {'in dev mode'} }} on {{os()}} / {{arch()}}"
6666
@echo "PWD $(pwd)"
67-
{{just_executable()}} --version
67+
{{quote(just_executable())}} --version
6868
rustc --version
6969
cargo --version
7070
rustup --version

0 commit comments

Comments
 (0)