7 lines
157 B
Plaintext
7 lines
157 B
Plaintext
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
pushd web
|
||
|
|
# run all_jobs rake task; this waits on new jobs from the resque queue, i.e., audiomixer, icecast, etc
|
||
|
|
bundle exec rake all_jobs
|
||
|
|
popd
|