Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[JENKINS-14575] We don't need to catch it here.
  • Loading branch information
Adam PAPAI committed Mar 31, 2013
1 parent 261b61b commit 3f135da
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/main/java/hudson/plugins/git/GitSCM.java
Expand Up @@ -1021,11 +1021,7 @@ public Collection<Revision> invoke(File localWorkspace, VirtualChannel channel)

boolean fetched = false;
for (RemoteConfig remoteRepository : repos) {
try {
fetched |= fetchFrom(git, listener, remoteRepository);
} catch (GitException ex) {
fetched |= false;
}
fetched |= fetchFrom(git, listener, remoteRepository);
}

if (!fetched) {
Expand Down

0 comments on commit 3f135da

Please sign in to comment.