From ca0dd7a3805cdeded88863b696afb72688d1f7b8 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Micha=C5=82=20Go=C5=82=C4=99biowski?= Date: Fri, 11 Sep 2015 21:35:10 +0200 Subject: [PATCH] Build: Use double quotes in .travis.yml .travis.yml used single quotes which is inconsistent with what we use in most other files. Also, the file was missing an empty line at the end. (cherry-picked from 06320c88af5be9cd937917282deb6eb4c4ad0443) --- .travis.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index bbbd62b97..0af8ea1c1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,7 @@ language: node_js sudo: false node_js: -- '0.10' -- '0.12' -- '4' +- "0.10" +- "0.12" +- "4" + -- 2.39.5