mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Split roles_path on colon separators and use the first path for the installation path
This commit is contained in:
parent
904ba869cc
commit
82d145534c
1 changed files with 3 additions and 0 deletions
|
@ -198,6 +198,9 @@ def get_opt(options, k, defval=""):
|
|||
data = getattr(options, k)
|
||||
except:
|
||||
return defval
|
||||
if k == "roles_path":
|
||||
if ":" in data:
|
||||
data = data.split(':')[0]
|
||||
return data
|
||||
|
||||
def exit_without_ignore(options, rc=1):
|
||||
|
|
Loading…
Reference in a new issue