9 lines
102 B
Bash
Executable File
9 lines
102 B
Bash
Executable File
#!/bin/bash
|
|
|
|
unset GIT_DIR
|
|
script/gemfile remote
|
|
|
|
bundle exec rake
|
|
if [ $? -ne 0 ]; then exit $?; fi
|
|
|