diff options
author | Stanislaw Kardach <kda@semihalf.com> | 2016-04-20 16:34:58 -0700 |
---|---|---|
committer | Stanislaw Kardach <kda@semihalf.com> | 2016-04-20 16:34:58 -0700 |
commit | 6bf15cd4182cdab5606f4198f3eb30f452345648 (patch) | |
tree | 38364a9897f290e232202d93bcad7a091396d011 | |
parent | f96f651a653d5e5b32515f177400bc0456d5ab7c (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>
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |