8 lines
86 B
Bash
8 lines
86 B
Bash
#!/bin/bash
|
|
|
|
function pulldep() {
|
|
git pull
|
|
bundle
|
|
bundle exec rake db:migrate
|
|
}
|