13.6.0-debian-10-r18 release

This commit is contained in:
Bitnami Bot
2022-03-02 08:23:06 +00:00
parent f7c895d513
commit 6a37a237be
4 changed files with 10 additions and 11 deletions

View File

@@ -1,16 +1,16 @@
{
"gosu": {
"arch": "amd64",
"digest": "6f8fd2267481ffbe899a7f93b7b3076cd78dd70b7b9835bed79414932a749664",
"digest": "d6280b6f647a62bf6edc74dc8e526bfff63ddd8067dcb8540843f47203d9ccf1",
"distro": "debian-10",
"type": "NAMI",
"version": "1.14.0-6"
"version": "1.14.0-7"
},
"postgresql": {
"arch": "amd64",
"digest": "e023dabb21785beadbc31edb6e308dfc86bccfa2f79f1ca02f825200aab81d49",
"digest": "4a34c65e883856cc476a3f573a0a613fb8ab6a8a2d9fac9b879265b48c343c65",
"distro": "debian-10",
"type": "NAMI",
"version": "13.6.0-5"
"version": "13.6.0-6"
}
}

View File

@@ -74,9 +74,8 @@ is_dir_empty() {
# boolean
#########################
is_mounted_dir_empty() {
local -r path="${1:?missing directory}"
# Calculate real path in order to avoid issues with symlinks
local -r dir="$(realpath "$path")"
local dir="${1:?missing directory}"
if is_dir_empty "$dir" || find "$dir" -mindepth 1 -maxdepth 1 -not -name ".snapshot" -not -name "lost+found" -exec false {} +; then
true
else