Set PSQLRC and PSQL_HISTORY env vars to apt. user storage path in the server mode. Fixes #6691

This commit is contained in:
Aditya Toshniwal
2021-08-23 16:19:01 +05:30
committed by Akshay Joshi
parent c64eb3507c
commit fbc6c30b62
3 changed files with 13 additions and 2 deletions

View File

@@ -241,7 +241,7 @@ else:
return os.path.realpath(os.path.expanduser('~/'))
def get_complete_file_path(file):
def get_complete_file_path(file, validate=True):
"""
Args:
file: File returned by file manager
@@ -266,7 +266,10 @@ def get_complete_file_path(file):
file = file.replace('\\', '/')
file = fs_short_path(file)
return file if os.path.isfile(file) else None
if validate:
return file if os.path.isfile(file) else None
else:
return file
def does_utility_exist(file):