Skip to content
Snippets Groups Projects
Commit 05356498 authored by Bastien Abadie's avatar Bastien Abadie Committed by Erwan Rouchet
Browse files

Actually run the command instead of echoing it

parent 64a568e1
No related branches found
No related tags found
1 merge request!2298Actually run the clean-docker command instead of echoing it
This commit is part of merge request !2298. Comments created here will be created in the context of that merge request.
......@@ -54,7 +54,7 @@ release:
clean-docker:
$(eval containers:=$(shell docker ps -a -q))
@if [ -n "$(containers)" ]; then \
echo "Cleaning up past containers\n" \
echo "Cleaning up past containers\n" ; \
docker rm -f $(containers) ; \
fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment