jekyll/script/cucumber

10 lines
142 B
Bash
Executable File

#!/bin/bash
if test -z "$TRAVIS"; then
PROFILE="--format pretty"
else
PROFILE="--format progress"
fi
bundle exec cucumber $PROFILE "$@"