bundle.sh 214 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 12 #!/bin/bash FILE=/tmp/bundle_done if [ -f $FILE ] then echo "File $FILE exists..." else cd $STACK_PATH bundle exec rake db:mongoid:create_indexes bundle exec rake db:seed touch /tmp/bundle_done fi