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