mirror of
https://github.com/jekyll/jekyll.git
synced 2026-01-13 17:08:06 -05:00
- Updated all of the sh and bash shebangs for consistency and portability. - set -e to the test script for portability Resolves #3857
12 lines
232 B
Bash
Executable File
12 lines
232 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
if ruby --version | grep -q "jruby"
|
|
then
|
|
echo "Move along, we are not testing features on JRuby right now."
|
|
exit 0
|
|
else
|
|
time ruby -S bundle exec cucumber \
|
|
-f Features::Support::Overview \
|
|
"$@"
|
|
fi
|