summaryrefslogtreecommitdiff
path: root/start
diff options
context:
space:
mode:
authorLuke Shumaker <shumakl@purdue.edu>2014-04-26 20:40:00 -0400
committerLuke Shumaker <shumakl@purdue.edu>2014-04-26 20:40:00 -0400
commitedcca83c6c251a79afcd83760cf20ebaf00b3b32 (patch)
tree9adac49d575ebdccbe8961e3960947508d43b647 /start
parented4f3dad6cd92710bf9cbafc36cf87dae8605f73 (diff)
parent1d24cb050f198e9c8bec8dd014de203d889ab56a (diff)
Merge branch 'master' of https://github.com/LukeShu/leaguer
Diffstat (limited to 'start')
-rwxr-xr-xstart11
1 files changed, 11 insertions, 0 deletions
diff --git a/start b/start
new file mode 100755
index 0000000..9ee8eba
--- /dev/null
+++ b/start
@@ -0,0 +1,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."
+