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