discourse/bin/system_rspec

8 lines
105 B
Bash
Executable File

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