]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Remove `gem install scss_lint` from Travis. 17491/head
authorXhmikosR <xhmikosr@gmail.com>
Sun, 6 Sep 2015 09:16:01 +0000 (12:16 +0300)
committerXhmikosR <xhmikosr@gmail.com>
Sun, 6 Sep 2015 09:28:35 +0000 (12:28 +0300)
Instead, use `bundleExec: true` for grunt-scss-lint.

.travis.yml
Gruntfile.js

index 6fbd2a3d812bdf769f66a9f1a39854d942e4d992..1d48a5ac7b70294c4642d35bd9aebb11a882acdf 100644 (file)
@@ -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:
index b209223243b15daa4799a49819fe1d7c2d641348..e4d0e43e7c641a3274a61048275f41851ea9e1b5 100644 (file)
@@ -206,6 +206,7 @@ module.exports = function (grunt) {
     // CSS build configuration
     scsslint: {
       options: {
+        bundleExec: true,
         config: 'scss/.scsslint.yml',
         reporterOutput: null
       },