mirror of
https://github.com/jekyll/jekyll.git
synced 2026-01-12 08:28:22 -05:00
12 lines
189 B
Bash
Executable File
12 lines
189 B
Bash
Executable File
#! /bin/bash
|
|
|
|
set -x
|
|
|
|
if [ -z "$1" ]; then
|
|
TEST_FILES="test/test*.rb"
|
|
else
|
|
TEST_FILES="$@"
|
|
fi
|
|
|
|
/usr/bin/env bundle exec ruby -I"lib:test" -r rake -r rake/rake_test_loader ${TEST_FILES}
|