fix example/cargo test/ CI
This commit is contained in:
parent
183f59eb95
commit
49e3d95e7a
1 changed files with 5 additions and 2 deletions
|
|
@ -8,9 +8,12 @@ async fn main() -> Result<(), Box<dyn Error>> {
|
||||||
.on_progress(|op, progress| {
|
.on_progress(|op, progress| {
|
||||||
println!("{:?}: {:?}", op.to, progress);
|
println!("{:?}: {:?}", op.to, progress);
|
||||||
})
|
})
|
||||||
.on_replace(|op| {
|
.on_replace(|op, conflicting_count| {
|
||||||
Box::pin(async move {
|
Box::pin(async move {
|
||||||
println!("replace {:?}? (y/N)", op.to);
|
println!(
|
||||||
|
"replace {:?}? (y/N) [conflicting: {}]",
|
||||||
|
op.to, conflicting_count
|
||||||
|
);
|
||||||
let mut line = String::new();
|
let mut line = String::new();
|
||||||
match io::stdin().read_line(&mut line) {
|
match io::stdin().read_line(&mut line) {
|
||||||
Ok(_) => {
|
Ok(_) => {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue