generated from PlexSheep/rs-base
Merge branch 'devel'
Some checks failed
cargo devel CI / cargo CI (push) Successful in 1m3s
Release-plz / Release-plz release (push) Failing after 1m22s
Release-plz / Release-plz PR (push) Failing after 1m29s
Some checks failed
cargo devel CI / cargo CI (push) Successful in 1m3s
Release-plz / Release-plz release (push) Failing after 1m22s
Release-plz / Release-plz PR (push) Failing after 1m29s
This commit is contained in:
commit
f9c164b21f
1 changed files with 4 additions and 7 deletions
11
src/main.rs
11
src/main.rs
|
@ -99,13 +99,10 @@ fn main() {
|
||||||
let mut config = Hedu::new(cli.chars, cli.skip, cli.show_identical, cli.limit);
|
let mut config = Hedu::new(cli.chars, cli.skip, cli.show_identical, cli.limit);
|
||||||
// FIXME: find a better way to get the file name
|
// FIXME: find a better way to get the file name
|
||||||
// Currently, skipped sources make an extra newline here.
|
// Currently, skipped sources make an extra newline here.
|
||||||
match config.chars {
|
if config.chars {
|
||||||
false => {
|
println!("{:─^80}", format!(" {} ", cli.data_source[i]));
|
||||||
println!("{:─^59}", format!(" {} ", cli.data_source[i]));
|
} else {
|
||||||
}
|
println!("{:─^59}", format!(" {} ", cli.data_source[i]));
|
||||||
true => {
|
|
||||||
println!("{:─^80}", format!(" {} ", cli.data_source[i]));
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
match config.dump(&mut **source) {
|
match config.dump(&mut **source) {
|
||||||
Ok(()) => (),
|
Ok(()) => (),
|
||||||
|
|
Reference in a new issue