summaryrefslogtreecommitdiffstats
path: root/src/dir.sh
diff options
context:
space:
mode:
Diffstat (limited to 'src/dir.sh')
-rw-r--r--src/dir.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dir.sh b/src/dir.sh
index 1877568..35cdcd9 100644
--- a/src/dir.sh
+++ b/src/dir.sh
@@ -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