summaryrefslogtreecommitdiff
path: root/start
blob: 9ee8ebadeee56580b6202dd526dd802df2fd601e (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash

if [ $1 == "-c" ]; then
	bundle exec rails c
fi
if [ $1 == "-s" ]; then
	bundle exec rails s
fi

#echo "Only use: start -c or start -s. Don't be a jackass."