We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec2d714 commit 59c6f10Copy full SHA for 59c6f10
justfile
@@ -1,5 +1,5 @@
1
test:
2
- cargo nextest run
+ cargo test
3
cargo clippy -- --deny warnings
4
cargo clippy --tests -- --deny warnings
5
cargo fmt --check
src/main.rs
@@ -173,7 +173,7 @@ fn main() {
173
);
174
match script.run() {
175
Ok(script_result) => {
176
- detail!(script_result.to_string(), opts.greppable, opts.accessible);
+ detail!(script_result.clone(), opts.greppable, opts.accessible);
177
}
178
Err(e) => {
179
warning!(&format!("Error {e}"), opts.greppable, opts.accessible);
0 commit comments