diff options
Diffstat (limited to 'src/dir.sh')
-rw-r--r-- | src/dir.sh | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -23,6 +23,7 @@ hash_name() { local name="${1}" + shift 1 local hash= if [ "x${name}" != "x${name#lib?}" ]; then @@ -40,6 +41,7 @@ hash_name() dir_is_empty() { local dir="${1}" + shift 1 local ret= local dirent= @@ -64,6 +66,7 @@ dir_is_empty() try_rmdir() { local dir="${1}" + shift 1 if ! dir_is_empty "${dir}"; then return 1 |