diff options
author | Aric Gardner <agardner@linuxfoundation.org> | 2017-09-11 20:04:45 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-09-11 20:04:45 +0000 |
commit | 36f65f1cc4edaa754014a435944ed1cab0b3d80b (patch) | |
tree | 26a2db61137738305b615570660df3fe144f70e2 /jjb | |
parent | e958d2e2a7a2f92e5227d2c3e3c73a050fca72a9 (diff) | |
parent | c21280fecad861fe1293657783afa985d448d1e1 (diff) |
Merge "Fix Releng Job Diff Experimental Check"
Diffstat (limited to 'jjb')
-rwxr-xr-x | jjb/releng/generate-job-list.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/jjb/releng/generate-job-list.sh b/jjb/releng/generate-job-list.sh index 583cbb126..4bf8974e4 100755 --- a/jjb/releng/generate-job-list.sh +++ b/jjb/releng/generate-job-list.sh @@ -28,9 +28,9 @@ echo "> Generating list of current JJB jobs..." jenkins-jobs -l ERROR test -r jjb -o job_output echo "> Generating list of previous JJB jobs..." -git checkout -q -b previous-commit HEAD^ +git checkout -b previous-commit HEAD^ jenkins-jobs -l ERROR test -r jjb -o job_output_prev -git checkout -q - && git branch -q -d previous-commit +git checkout - && git branch -d previous-commit echo "> Finding job changes ..." diff -r -q job_output job_output_prev &> job_diff.txt || true |