diff --git a/pmb/helpers/mount.py b/pmb/helpers/mount.py index c8e3ed0a..d6042902 100644 --- a/pmb/helpers/mount.py +++ b/pmb/helpers/mount.py @@ -25,7 +25,7 @@ def ismount(folder): Ismount() implementation, that works for mount --bind. Workaround for: https://bugs.python.org/issue29707 """ - folder = os.path.abspath(folder) + folder = os.path.abspath(os.path.realpath(folder)) with open("/proc/mounts", "r") as handle: for line in handle: words = line.split()