hack/scripts/Makefile: fix docker commands

Signed-off-by: Gyuho Lee <gyuhox@gmail.com>
This commit is contained in:
Gyuho Lee 2018-03-22 02:05:48 -07:00
parent 31de8345f9
commit dcc2b9cfda

View File

@ -36,8 +36,8 @@ restart-docker:
service docker restart
delete-docker-images:
docker rm --force $(docker ps -a -q) || true
docker rmi --force $(docker images -q) || true
docker rm --force `docker ps -a -q` || true
docker rmi --force `docker images -q` || true