mirror of
https://github.com/jekyll/jekyll.git
synced 2026-01-30 01:08:26 -05:00
12 lines
224 B
Bash
Executable File
12 lines
224 B
Bash
Executable File
#!/bin/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
|