4 lines
104 B
Bash
Executable file
4 lines
104 B
Bash
Executable file
#!/bin/bash
|
|
|
|
for d in ${1:-workers/*}; do ( cd $d; . env/bin/activate; buildbot-worker restart; ); done
|