remove println at finish
This commit is contained in:
parent
74c41ab9e4
commit
39ec9a5372
3 changed files with 3 additions and 4 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,4 +1,5 @@
|
|||
/target
|
||||
*.log
|
||||
*.webp
|
||||
*.webm
|
||||
*.ogg
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "n-mb"
|
||||
authors = ["Djkáťo <djkatovfx@gmail.com>"]
|
||||
version = "1.1.0"
|
||||
version = "1.1.1"
|
||||
edition = "2021"
|
||||
description = "Simple ffmpeg wrapper to parse files to the most efficient formats within a set size"
|
||||
license = "MIT OR Apache-2.0"
|
||||
|
@ -10,7 +10,7 @@ repository = "https://github.com/djkato/n-mb"
|
|||
readme = "README.md"
|
||||
keywords = ["media", "ffmpeg", "cli"]
|
||||
categories = ["command-line-utilities"]
|
||||
exclude = ["*.mp4", "*.mp3", "*.jpg", "*.ogg", "*.webp", "*.webm"]
|
||||
exclude = ["*.mp4", "*.mp3", "*.jpg", "*.ogg", "*.webp", "*.webm", "*.log"]
|
||||
|
||||
[dependencies]
|
||||
anyhow = "1.0.75"
|
||||
|
|
|
@ -205,9 +205,7 @@ async fn main() -> anyhow::Result<()> {
|
|||
}
|
||||
},
|
||||
_ => {
|
||||
println!("Finished");
|
||||
command.status = EncodingStatus::Finished;
|
||||
println!("test");
|
||||
}
|
||||
},
|
||||
"continue" => command.status = EncodingStatus::InProgress,
|
||||
|
|
Loading…
Reference in a new issue