Skip to content

Commit daba1df

Browse files
committed
Convert multiple conditional to nested conditional to support Windows
1 parent 0e6dd93 commit daba1df

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,13 @@ endif
88
# Define whether the make commands are running on a hosted continuous integration service:
99
ifeq ($(TRAVIS), true)
1010
CI_SERVICE ?= travis
11-
else ifeq ($(APPVEYOR), true)
11+
else
12+
ifeq ($(APPVEYOR), true)
1213
CI_SERVICE ?= appveyor
1314
else
1415
CI_SERVICE ?= none
1516
endif
17+
endif
1618

1719
# Define supported Node.js versions:
1820
NODE_VERSIONS ?= '0.10 0.12 1 2 3 4 5 6 node'

0 commit comments

Comments
 (0)