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