diff options
-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 |