Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Hvornum <anton.feeds+github@gmail.com>2019-11-23 21:38:30 +0000
committerAnton Hvornum <anton.feeds+github@gmail.com>2019-11-23 21:38:30 +0000
commit5e99895803accce102faeaac5544f76ed54a904d (patch)
tree68213acb8342b96bb820b4dae96195d1954fd189
parent5c306c3bccf80a74756d13c06da7baa2e91f5256 (diff)
Fixed which statement. It's a builtin and not a /usr/bin command
-rw-r--r--archinstall.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/archinstall.py b/archinstall.py
index fa700ffe..c7b54d12 100644
--- a/archinstall.py
+++ b/archinstall.py
@@ -235,10 +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)
- x = Popen(f'/usr/bin/sh -c "which {self.cmd[0]}"', shell=True, stdout=PIPE)
- while x.poll() is None:
- pass
- o = x.stdout.read()
+ o = check_output(['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()