[F] Specify /usr/bin/env bash to prevent ld signature check on iOS
This commit is contained in:
parent
a758b4ba04
commit
b6f0a80bb1
1 changed files with 1 additions and 1 deletions
|
|
@ -206,7 +206,7 @@ def run_command(args: str, pipe: bool = False) -> str | None:
|
||||||
Run neofetch command
|
Run neofetch command
|
||||||
"""
|
"""
|
||||||
if platform.system() != 'Windows':
|
if platform.system() != 'Windows':
|
||||||
full_cmd = shlex.split(f'{get_command_path()} {args}')
|
full_cmd = shlex.split(f'/usr/bin/env bash {get_command_path()} {args}')
|
||||||
|
|
||||||
else:
|
else:
|
||||||
cmd = get_command_path().replace("\\", "/").replace("C:/", "/c/")
|
cmd = get_command_path().replace("\\", "/").replace("C:/", "/c/")
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue