Merge "Fix last return value in _get_base_path"

This commit is contained in:
Zuul 2023-10-17 13:28:52 +00:00 committed by Gerrit Code Review
commit 4e2a0d2e8d

View File

@ -90,7 +90,7 @@ def _get_base_path():
return os.path.join(prefix, "share", "kayobe")
# Assume uninstalled
return os.path.join(os.path.realpath(__file__), "..")
return os.path.join(os.path.dirname(os.path.realpath(__file__)), "..")
def galaxy_role_install(role_file, roles_path, force=False):