Added the possibility of specifying worker path on the command line for the restart-workers script
- Legacy-Id: 17662
This commit is contained in:
parent
dcc083633b
commit
e9b2ecd59e
|
@ -1,3 +1,3 @@
|
|||
#!/bin/bash
|
||||
|
||||
for d in workers/*; do ( cd $d; . env/bin/activate; buildbot-worker restart; ); done
|
||||
for d in ${1:-workers/*}; do ( cd $d; . env/bin/activate; buildbot-worker restart; ); done
|
||||
|
|
Loading…
Reference in a new issue