mirror of
https://github.com/containers/podman-compose.git
synced 2025-08-09 05:54:34 +02:00
FIXES #486: replace realpath with abspath
This commit is contained in:
@ -130,7 +130,7 @@ def parse_short_mount(mount_str, basedir):
|
||||
# User-relative path
|
||||
# - ~/configs:/etc/configs/:ro
|
||||
mount_type = "bind"
|
||||
mount_src = os.path.realpath(
|
||||
mount_src = os.path.abspath(
|
||||
os.path.join(basedir, os.path.expanduser(mount_src))
|
||||
)
|
||||
else:
|
||||
|
Reference in New Issue
Block a user