Skip to content
Snippets Groups Projects
Commit 27c3f6ff authored by Jeffrey Zhang's avatar Jeffrey Zhang
Browse files

Use the absoluate path

Use the absoluate path rather than that with `..`. This will be
helpfull for end-user to see where is the folder/file.

Closes-Bug: #1513726
Change-Id: I7169952d874ddf14469605444044de0163b033d3
parent 2b02001e
No related branches found
No related tags found
No related merge requests found
......@@ -192,7 +192,7 @@ class WorkerThread(Thread):
def find_base_dir():
script_path = os.path.dirname(os.path.realpath(sys.argv[0]))
if os.path.basename(script_path) == 'cmd':
return os.path.join(script_path, '..', '..')
return os.path.realpath(os.path.join(script_path, '..', '..'))
if os.path.basename(script_path) == 'bin':
return '/usr/share/kolla'
if os.path.exists(os.path.join(script_path, 'tests')):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment