Skip to content

Commit 59c6f10

Browse files
author
bee
committed
fix ci
1 parent ec2d714 commit 59c6f10

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

justfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
test:
2-
cargo nextest run
2+
cargo test
33
cargo clippy -- --deny warnings
44
cargo clippy --tests -- --deny warnings
55
cargo fmt --check

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ fn main() {
173173
);
174174
match script.run() {
175175
Ok(script_result) => {
176-
detail!(script_result.to_string(), opts.greppable, opts.accessible);
176+
detail!(script_result.clone(), opts.greppable, opts.accessible);
177177
}
178178
Err(e) => {
179179
warning!(&format!("Error {e}"), opts.greppable, opts.accessible);

0 commit comments

Comments
 (0)