mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-05-13 08:26:56 +00:00
Fix pkill invocation
This commit is contained in:
parent
e25390724e
commit
2eb79c0a3a
1 changed files with 1 additions and 1 deletions
|
|
@ -92,7 +92,7 @@ def run_build(args: Any) -> None:
|
|||
time.sleep(60)
|
||||
call(cmd, echo=True, timeout=timeout)
|
||||
|
||||
for x, retry_cmd in {'64': '', 'arm64': 'pkill -9 qemu-aarch64-static'}.items():
|
||||
for x, retry_cmd in {'64': '', 'arm64': 'pkill -9 -f -e qemu-aarch64-static'}.items():
|
||||
prefix = f'python ../bypy linux --arch {x} '
|
||||
run_with_retry(prefix + f'program --non-interactive --extra-program-data "{vcs_rev}"', retry_cmd=retry_cmd)
|
||||
run_with_retry(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue