mirror of
https://github.com/bensuperpc/dockcross.git
synced 2024-12-22 16:24:27 +01:00
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)
This commit is contained in:
parent
2b620ad718
commit
5117ab6493
4
Makefile
4
Makefile
@ -28,9 +28,9 @@ windows-x64.test_ARGS = --exe-suffix ".exe"
|
|||||||
|
|
||||||
# On CircleCI, do not attempt to delete container
|
# On CircleCI, do not attempt to delete container
|
||||||
# See https://circleci.com/docs/docker-btrfs-error/
|
# See https://circleci.com/docs/docker-btrfs-error/
|
||||||
RM = "--rm"
|
RM = --rm
|
||||||
ifeq ("$(CIRCLECI)", "true")
|
ifeq ("$(CIRCLECI)", "true")
|
||||||
RM = ""
|
RM =
|
||||||
endif
|
endif
|
||||||
|
|
||||||
#
|
#
|
||||||
|
Loading…
Reference in New Issue
Block a user