Fetch all upstream refs for bwc checkout

This commit is contained in:
Ryan Ernst 2017-03-24 02:31:10 -07:00
parent a26321e03b
commit 8822332355
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ task addUpstream(type: LoggedExec) {
task fetchLatest(type: LoggedExec) {
dependsOn addUpstream
workingDir = checkoutDir
commandLine = ['git', 'fetch', 'upstream', '5.x']
commandLine = ['git', 'fetch', 'upstream']
}
task checkoutBwcBranch(type: LoggedExec) {