mirror of
https://github.com/jekyll/jekyll.git
synced 2026-01-30 09:18:11 -05:00
18 lines
173 B
Bash
Executable File
18 lines
173 B
Bash
Executable File
#! /bin/bash
|
|
#
|
|
# Usage:
|
|
# script/test
|
|
# script/test <hi>
|
|
|
|
set -x
|
|
|
|
if [ -z "$1" ]; then
|
|
TEST_FILES="test/test_*.rb"
|
|
else
|
|
TEST_FILES="$@"
|
|
fi
|
|
|
|
set -x
|
|
|
|
bundle exec rake
|