16 lines
192 B
Bash
Executable File
16 lines
192 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Stop if any command fails
|
|
set -e
|
|
|
|
git checkout master
|
|
git pull
|
|
|
|
git rebase develop
|
|
bundle install
|
|
appraisal install
|
|
rake release
|
|
|
|
git checkout develop
|
|
git rebase master
|