Skip to content

Commit 98b46e0

Browse files
committed
build_sdk_container_image: force removal of running container
At least with Podman it's not possible to call "container rm" on a running container without the force flag. Add the force flag which is also used elsewhere already.
1 parent 1928852 commit 98b46e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build_sdk_container_image

+1-1
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ else
178178
rm "${tarball_copied}"
179179
fi
180180

181-
$docker container rm "${toolchains_container}"
181+
$docker container rm -f "${toolchains_container}"
182182

183183
docker_interface="docker0"
184184
if "${is_podman}"; then

0 commit comments

Comments
 (0)