diff options
author | Kent Overstreet <kent.overstreet@gmail.com> | 2022-07-07 17:18:44 -0400 |
---|---|---|
committer | Kent Overstreet <kent.overstreet@gmail.com> | 2022-07-07 23:52:08 -0400 |
commit | 6ec253d2b80a123861cad166115faba4b862c35d (patch) | |
tree | 9321628607b4d05bc558ab62887633a0bd04d82c /ci/test-git-branch.sh | |
parent | 3d1cd69aa8307e6bcf48b9a33abe4f1a86c901cb (diff) |
get-test-job.sh: tweak looping
We now get the latest version of the script on every loop iteration
Signed-off-by: Kent Overstreet <kent.overstreet@gmail.com>
Diffstat (limited to 'ci/test-git-branch.sh')
-rwxr-xr-x | ci/test-git-branch.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ci/test-git-branch.sh b/ci/test-git-branch.sh index 1044343..55968ef 100755 --- a/ci/test-git-branch.sh +++ b/ci/test-git-branch.sh @@ -2,4 +2,6 @@ JOBSERVER=$1 -source <(ssh $JOBSERVER cat .ktestrc bin/_test-git-branch.sh) +while true; do + source <(ssh $JOBSERVER cat .ktestrc bin/_test-git-branch.sh) +done |