1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-29 12:07:46 +00:00

install: Make log message identical to GNU install

$ install -v -d dir1
    install: creating directory 'dir1'
This commit is contained in:
Juliana Rodrigueiro 2021-04-02 19:04:14 +01:00
parent 4934af0c3d
commit 349c4f7af6

View file

@ -372,7 +372,7 @@ fn directory(paths: Vec<String>, b: Behavior) -> i32 {
}
if b.verbose {
show_info!("created directory '{}'", path.display());
show_info!("creating directory '{}'", path.display());
}
}
if all_successful {