Files
discourse/bin/system_rspec
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
105 B
Bash
Raw Normal View History

#!/bin/bash
if [[ -z "$@" ]]; then
bin/rspec spec/system
elif [[ -n "$@" ]]; then
bin/rspec "$@"
fi