Commit 9da25289 by James Tanner

Split roles_path on colon separators and use the first path for the installation path

parent 309f0e03
......@@ -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):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment