InstallChecks update

- Better code readability
- Added vim_vundle check + Vundle Installation
This commit is contained in:
koumakpet 2020-04-06 00:38:29 +02:00
parent 3fd8308768
commit 6c41f7b1c8
3 changed files with 152 additions and 76 deletions

View file

@ -51,10 +51,10 @@ def check_file_exists(paths):
for file_path in paths:
file_path = os.path.expanduser(file_path)
if os.path.isfile(file_path):
return True
return True, file_path
break
else:
return False
return False, None
def get_parent(file_path):