From 5117ab6493d8ac213f4298138085e770f82ed774 Mon Sep 17 00:00:00 2001 From: Jean-Christophe Fillion-Robin Date: Mon, 28 Nov 2016 23:39:38 -0500 Subject: [PATCH] Makefile: Fix tests removing double quote from RM variable This commit fixes a regression introduced in 6823cb1 (Makefile: Do not specify "--rm" docker run argument when executing on CircleCI) --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 04f1c7f..c406348 100644 --- a/Makefile +++ b/Makefile @@ -28,9 +28,9 @@ windows-x64.test_ARGS = --exe-suffix ".exe" # On CircleCI, do not attempt to delete container # See https://circleci.com/docs/docker-btrfs-error/ -RM = "--rm" +RM = --rm ifeq ("$(CIRCLECI)", "true") - RM = "" + RM = endif #