mirror of
https://codeberg.org/Mo8it/dotfiles.git
synced 2024-12-27 01:01:05 +00:00
Use podman kill
This commit is contained in:
parent
a39a2a9ac4
commit
6de9d7926e
3 changed files with 3 additions and 3 deletions
|
@ -73,7 +73,7 @@ if status is-interactive
|
||||||
function build-sh
|
function build-sh
|
||||||
podman start build
|
podman start build
|
||||||
podman exec -it build bash
|
podman exec -it build bash
|
||||||
podman stop -t 0 build
|
podman kill build
|
||||||
end
|
end
|
||||||
|
|
||||||
## Taskwarrior
|
## Taskwarrior
|
||||||
|
|
|
@ -107,7 +107,7 @@ def main():
|
||||||
|
|
||||||
npm_packages(output_dir)
|
npm_packages(output_dir)
|
||||||
|
|
||||||
run("podman stop -t 0 build")
|
run("podman kill build")
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
|
|
|
@ -87,7 +87,7 @@ def start_build():
|
||||||
|
|
||||||
|
|
||||||
def stop_build():
|
def stop_build():
|
||||||
run("podman stop -t 0 build")
|
run("podman kill build")
|
||||||
|
|
||||||
|
|
||||||
def update_build():
|
def update_build():
|
||||||
|
|
Loading…
Reference in a new issue