aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStanislaw Kardach <kda@semihalf.com>2016-04-20 16:34:58 -0700
committerAlexandru Avadanii <Alexandru.Avadanii@enea.com>2016-05-02 14:34:59 +0000
commitb5679e5587710bf52a8ca8aa8fc18c1a1cfd206c (patch)
treef0565ca08e407365d7b2bf2a670b632145143080
parentad3e0aa93a4cf9f612c7608a1acbdc7897c07db6 (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> (cherry picked from commit 6bf15cd4182cdab5606f4198f3eb30f452345648) Change-Id: I3e37100af715ff1e1aa4a8303df8af3004eb8723
-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