Skip to content

Commit e9b2ecd

Browse files
author
buildbot
committed
Added the possibility of specifying worker path on the command line for the restart-workers script
- Legacy-Id: 17662
1 parent dcc0836 commit e9b2ecd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

buildbot/restart-workers

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/bin/bash
22

3-
for d in workers/*; do ( cd $d; . env/bin/activate; buildbot-worker restart; ); done
3+
for d in ${1:-workers/*}; do ( cd $d; . env/bin/activate; buildbot-worker restart; ); done

0 commit comments

Comments
 (0)