index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton.feeds+github@gmail.com> | 2019-11-23 21:38:53 +0000 |
---|---|---|
committer | Anton Hvornum <anton.feeds+github@gmail.com> | 2019-11-23 21:38:53 +0000 |
commit | bbb62bc8798bb874835dcbde711d09311b44ae3f (patch) | |
tree | 0851f15e85bc37a2317ba70af73d23808c6d76e3 | |
parent | 5e99895803accce102faeaac5544f76ed54a904d (diff) |
-rw-r--r-- | archinstall.py | 2 |
diff --git a/archinstall.py b/archinstall.py index c7b54d12..80ea9f07 100644 --- a/archinstall.py +++ b/archinstall.py @@ -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() |