Hotfix for just errors related to podman
This commit is contained in:
parent
c5f0bc509e
commit
524baf90d2
1 changed files with 2 additions and 2 deletions
4
Justfile
4
Justfile
|
@ -11,7 +11,7 @@ start-release: build-container-release remove-podman-containers
|
||||||
# Removes and stops any containers related to the project
|
# Removes and stops any containers related to the project
|
||||||
[private]
|
[private]
|
||||||
remove-podman-containers:
|
remove-podman-containers:
|
||||||
podman container rm -f ttime
|
podman container rm -fi ttime
|
||||||
|
|
||||||
# Saves the release container to a tarball, pigz is just gzip but multithreaded
|
# Saves the release container to a tarball, pigz is just gzip but multithreaded
|
||||||
save-release: build-container-release
|
save-release: build-container-release
|
||||||
|
@ -30,7 +30,7 @@ testall:
|
||||||
|
|
||||||
# Cleans up everything related to the project
|
# Cleans up everything related to the project
|
||||||
clean: remove-podman-containers
|
clean: remove-podman-containers
|
||||||
podman image rm -f ttime-server
|
podman image rm -fi ttime-server
|
||||||
rm -rf frontend/dist
|
rm -rf frontend/dist
|
||||||
rm -rf frontend/node_modules
|
rm -rf frontend/node_modules
|
||||||
rm -f ttime-server.tar.gz
|
rm -f ttime-server.tar.gz
|
||||||
|
|
Loading…
Reference in a new issue