Ensure rootdir is absolute

This commit is contained in:
Joshua Harlow 2012-03-15 18:25:31 -07:00
parent 7767d20f13
commit a39732d73b

1
stack
View File

@ -117,6 +117,7 @@ def run(args):
if not root_dir:
print(utils.color_text("No root directory specified!", "red"))
return False
root_dir = sh.abspth(root_dir)
persona_fn = args.pop('persona_fn')
if not persona_fn or not sh.isfile(persona_fn):