1
0
Fork 0
mirror of https://codeberg.org/Mo8it/dotfiles.git synced 2024-10-17 20:52:40 +00:00

Use podman kill

This commit is contained in:
Mo 2022-05-24 16:41:01 +02:00
parent a39a2a9ac4
commit 6de9d7926e
3 changed files with 3 additions and 3 deletions

View file

@ -73,7 +73,7 @@ if status is-interactive
function build-sh
podman start build
podman exec -it build bash
podman stop -t 0 build
podman kill build
end
## Taskwarrior

View file

@ -107,7 +107,7 @@ def main():
npm_packages(output_dir)
run("podman stop -t 0 build")
run("podman kill build")
if __name__ == "__main__":

View file

@ -87,7 +87,7 @@ def start_build():
def stop_build():
run("podman stop -t 0 build")
run("podman kill build")
def update_build():