Remove stray println
This commit is contained in:
@ -362,7 +362,6 @@ fn main() {
|
|||||||
fn remove_directory_contents(ledger_path: &Path) -> Result<(), io::Error> {
|
fn remove_directory_contents(ledger_path: &Path) -> Result<(), io::Error> {
|
||||||
for entry in fs::read_dir(&ledger_path)? {
|
for entry in fs::read_dir(&ledger_path)? {
|
||||||
let entry = entry?;
|
let entry = entry?;
|
||||||
println!("emove {}:", entry.path().display());
|
|
||||||
if entry.metadata()?.is_file() {
|
if entry.metadata()?.is_file() {
|
||||||
fs::remove_file(&entry.path())?
|
fs::remove_file(&entry.path())?
|
||||||
} else {
|
} else {
|
||||||
|
Reference in New Issue
Block a user