diff options
author | Stanislaw Kardach <kda@semihalf.com> | 2016-04-20 16:34:58 -0700 |
---|---|---|
committer | Alexandru Avadanii <Alexandru.Avadanii@enea.com> | 2016-05-02 14:34:59 +0000 |
commit | b5679e5587710bf52a8ca8aa8fc18c1a1cfd206c (patch) | |
tree | f0565ca08e407365d7b2bf2a670b632145143080 /Makefile | |
parent | ad3e0aa93a4cf9f612c7608a1acbdc7897c07db6 (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
Diffstat (limited to 'Makefile')
-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 |