Browse Source

hack/scripts/Makefile: fix docker commands

Signed-off-by: Gyuho Lee <gyuhox@gmail.com>
Gyuho Lee 7 years ago
parent
commit
dcc2b9cfda
1 changed files with 2 additions and 2 deletions
  1. 2 2
      hack/scripts-dev/Makefile

+ 2 - 2
hack/scripts-dev/Makefile

@@ -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