summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorStanislaw Kardach <kda@semihalf.com>2016-04-20 16:34:58 -0700
committerStanislaw Kardach <kda@semihalf.com>2016-04-20 16:34:58 -0700
commit6bf15cd4182cdab5606f4198f3eb30f452345648 (patch)
tree38364a9897f290e232202d93bcad7a091396d011 /Makefile
parentf96f651a653d5e5b32515f177400bc0456d5ab7c (diff)
Correct docker cleaning
So there was a very stupid mistake in the docker container cleaning that this patch fixes. Signed-off-by: Stanislaw Kardach <stanislaw.kardach@caviumnetworks.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index e58fe0d7..0b285a91 100644
--- a/Makefile
+++ b/Makefile
@@ -37,8 +37,8 @@ patches-import:
fi'
clean-docker:
docker stop FUEL_CENTOS_8.0 || true
- docker rm $(docker ps -a -q) || true
- docker rmi -f $(docker images -q) || true
+ docker rm $(shell docker ps -a -q) || true
+ docker rmi -f $(shell docker images -q) || true
clean-build:
sudo rm -rf /tmp/fuel-main