Skip to content

Commit 853a837

Browse files
committed
chore: add node 10 to builds and wrap windows paths in quotes
1 parent 33363e6 commit 853a837

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ addons:
1919
node_js:
2020
- "6"
2121
- "8"
22+
- "10"
2223
- "12"
2324
- "13"
2425

@@ -36,9 +37,8 @@ before_install:
3637
case $TRAVIS_OS_NAME in
3738
windows)
3839
choco install redis-64
39-
C:\ProgramData\chocolatey\lib\redis-64\tools\redis-server.exe --service-install
40-
C:\ProgramData\chocolatey\lib\redis-64\tools\redis-server.exe --service-start
41-
'@ECHO Redis Started'
40+
"C:\ProgramData\chocolatey\lib\redis-64\tools\redis-server.exe" --service-install
41+
"C:\ProgramData\chocolatey\lib\redis-64\tools\redis-server.exe" --service-start
4242
node --version
4343
npm --version
4444
;;

0 commit comments

Comments
 (0)