Skip to content

Commit 4913663

Browse files
committed
Use quote() instead of concating ' in summarize recipe
This is easier to read and verify for correctness, and also more robust.
1 parent 6c633da commit 4913663

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

justfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ audit:
243243
nextest *FLAGS="--workspace":
244244
cargo nextest run {{ FLAGS }}
245245

246-
summarize EXPRESSION="all()": (nextest "--workspace --run-ignored all --no-fail-fast --status-level none --final-status-level none -E '" EXPRESSION "'")
246+
summarize EXPRESSION="all()": (nextest "--workspace --run-ignored all --no-fail-fast --status-level none --final-status-level none -E" quote(EXPRESSION))
247247

248248
# run nightly rustfmt for its extra features, but check that it won't upset stable rustfmt
249249
fmt:

0 commit comments

Comments
 (0)