Fixed which statement. It's a builtin and not a /usr/bin command
This commit is contained in:
parent
5c306c3bcc
commit
5e99895803
|
|
@ -235,10 +235,7 @@ class sys_command():#Thread):
|
||||||
|
|
||||||
if not self.cmd[0][0] == '/':
|
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)
|
log('Worker command is not executed with absolute path, trying to find: {}'.format(self.cmd[0]), origin='spawn', level=5)
|
||||||
x = Popen(f'/usr/bin/sh -c "which {self.cmd[0]}"', shell=True, stdout=PIPE)
|
o = check_output(['which', self.cmd[0]])
|
||||||
while x.poll() is None:
|
|
||||||
pass
|
|
||||||
o = x.stdout.read()
|
|
||||||
log('This is the binary {} for {}'.format(o.decode('UTF-8'), self.cmd[0]), origin='spawn', level=5)
|
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()
|
self.cmd[0] = o.decode('UTF-8').strip()
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue