File: test

package info (click to toggle)
ruby-jekyll-sass-converter 2.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 312 kB
  • sloc: ruby: 818; sh: 22; makefile: 6
file content (11 lines) | stat: -rwxr-xr-x 238 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash

set -e

echo "Running rspec with sassc"
SASS_IMPLEMENTATION=sassc bundle exec rspec $@

if bundle info sass-embedded; then
  echo "Running rspec with sass-embedded"
  SASS_IMPLEMENTATION=sass-embedded bundle exec rspec $@
fi