Skip to content

Commit 09870f3

Browse files
committed
Can't even imagine how I missed this bug
1 parent a217248 commit 09870f3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ plugins {
1212
}
1313

1414
group = 'net.minecrell'
15-
version = '0.5'
15+
version = '0.5.1'
1616
description = 'A Gradle plugin to manage patches for Git repositories'
1717

1818
sourceCompatibility = 1.6

src/main/groovy/net/minecrell/gitpatcher/task/patch/ApplyPatchesTask.groovy

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ class ApplyPatchesTask extends PatchTask {
6464

6565
git.repo = repo
6666
git.fetch('origin') >> null
67-
git.checkout('-B', 'master', 'origin/master') >> null
67+
git.checkout('-B', 'master', 'origin/upstream') >> null
6868
git.reset('--hard') >> out
6969

7070
if (patchDir.isDirectory()) {

0 commit comments

Comments
 (0)