Change bash into sh to fix that bash is not installed in some FreeBSD distro by default. (#1132)

This commit is contained in:
LiliDeng 2020-12-18 11:09:52 +08:00 коммит произвёл Chi Song
Родитель bc82ac9e52
Коммит 2b14e90272
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -72,7 +72,7 @@ class Process:
command = f"{command}"
if shell:
if self._is_linux:
split_command = ["bash", "-c"]
split_command = ["sh", "-c"]
else:
split_command = ["cmd", "/c"]
split_command.append(command)