diff options
-rw-r--r-- | src/dir.sh | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -40,7 +40,7 @@ hash_name() return 0 } -dir_is_empty() +_dir_is_empty() { local dir="${1}" shift 1 @@ -70,7 +70,7 @@ try_rmdir() local dir="${1}" shift 1 - if ! dir_is_empty "${dir}"; then + if ! _dir_is_empty "${dir}"; then return 1 fi if ! rmdir -- "${dir}"; then |