Skip to content
Snippets Groups Projects
Commit 0b93973c authored by Yann Leboulanger's avatar Yann Leboulanger
Browse files

[shutnik] improved os info under posix. Fixes #4506

parent 27dfe571
No related branches found
No related tags found
No related merge requests found
......@@ -795,7 +795,7 @@ def get_os_info():
return 'Windows'
elif os.name == 'posix':
executable = 'lsb_release'
params = ' --id --codename --release --short'
params = ' --description --codename --release --short'
full_path_to_executable = is_in_path(executable, return_abs_path = True)
if full_path_to_executable:
command = executable + params
......
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