From c814e5ac0edc408462c60aeb43cc6f91a1d448df Mon Sep 17 00:00:00 2001 From: Alan Myrvold Date: Tue, 2 Oct 2018 07:21:15 -0700 Subject: [PATCH] [BEAM-4496] Fix #3 for branch fetch failure on job_PostCommit_Website_Publish --- website/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/build.gradle b/website/build.gradle index fd9c55a667c00..f5b4766708567 100644 --- a/website/build.gradle +++ b/website/build.gradle @@ -126,7 +126,7 @@ task commitWebsite << { // get the latest commit on master def latestCommit = grgit.log(maxCommits: 1)[0].abbreviatedId - shell "git fetch ${gitboxUrl} asf-site" + shell "git fetch ${gitboxUrl}" git.checkout(branch: 'asf-site') shell "git reset --hard origin/asf-site"