From: XhmikosR Date: Sun, 6 Sep 2015 09:16:01 +0000 (+0300) Subject: Remove `gem install scss_lint` from Travis. X-Git-Tag: v4.0.0-alpha.2~328^2^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F17491%2Fhead;p=thirdparty%2Fbootstrap.git Remove `gem install scss_lint` from Travis. Instead, use `bundleExec: true` for grunt-scss-lint. --- diff --git a/.travis.yml b/.travis.yml index 6fbd2a3d81..1d48a5ac7b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,7 +13,6 @@ before_install: - if [ "$TRAVIS_REPO_SLUG" = twbs-savage/bootstrap ]; then export TWBS_DO_VALIDATOR=0; fi install: - bundle install --deployment --jobs=3 - - gem install scss_lint --no-rdoc --no-ri - npm install -g grunt-cli - npm install cache: diff --git a/Gruntfile.js b/Gruntfile.js index b209223243..e4d0e43e7c 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -206,6 +206,7 @@ module.exports = function (grunt) { // CSS build configuration scsslint: { options: { + bundleExec: true, config: 'scss/.scsslint.yml', reporterOutput: null },