Fixed which statement. It's a builtin and not a /usr/bin command

This commit is contained in:
Anton Hvornum 2019-11-23 21:38:53 +00:00
parent 5e99895803
commit bbb62bc879
1 changed files with 1 additions and 1 deletions

View File

@ -235,7 +235,7 @@ class sys_command():#Thread):
if not self.cmd[0][0] == '/':
log('Worker command is not executed with absolute path, trying to find: {}'.format(self.cmd[0]), origin='spawn', level=5)
o = check_output(['which', self.cmd[0]])
o = check_output(['/usr/bin/which', self.cmd[0]])
log('This is the binary {} for {}'.format(o.decode('UTF-8'), self.cmd[0]), origin='spawn', level=5)
self.cmd[0] = o.decode('UTF-8').strip()