This commit is contained in:
@@ -67,7 +67,7 @@ fn main() {
|
||||
.unwrap_or("");
|
||||
|
||||
// Since get is async, we need to block on it
|
||||
let (pb, mut progress_callback) = ui::create_progress_bar(&multi);
|
||||
let (pb, progress_callback) = ui::create_progress_bar(&multi);
|
||||
|
||||
if let Err(e) = rt.block_on(get(
|
||||
package,
|
||||
@@ -77,7 +77,7 @@ fn main() {
|
||||
ppa,
|
||||
dist,
|
||||
None,
|
||||
Some(&mut progress_callback),
|
||||
Some(&progress_callback),
|
||||
)) {
|
||||
pb.finish_and_clear();
|
||||
error!("{}", e);
|
||||
@@ -99,7 +99,7 @@ fn main() {
|
||||
let editor = std::env::var("EDITOR").unwrap();
|
||||
let _status = std::process::Command::new(editor)
|
||||
.current_dir(&cwd)
|
||||
.args(&["debian/changelog"])
|
||||
.args(["debian/changelog"])
|
||||
.status();
|
||||
}
|
||||
_ => unreachable!("Exhausted list of subcommands and subcommand_required prevents `None`"),
|
||||
|
||||
Reference in New Issue
Block a user