summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTrevor Bramwell <tbramwell@linuxfoundation.org>2017-09-11 09:35:52 -0700
committerTrevor Bramwell <tbramwell@linuxfoundation.org>2017-09-11 09:35:52 -0700
commitc21280fecad861fe1293657783afa985d448d1e1 (patch)
tree7086c22b830ec379c0ca5d7bce7481a2f3cda76e
parent23bd33c54e69205afb5349aee9ee310f2f66ed6c (diff)
Fix Releng Job Diff Experimental Check
Remove the '-q' arument to git-branch in the generate-job-diff script as the git version on Jenkins master is too old. Change-Id: I869a9713e75604600adf3ee8b8b96386ad4a8ff0 Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
-rwxr-xr-xjjb/releng/generate-job-list.sh4
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