Skip to content

Commit

Permalink
Merge branch 'master' of github.com:grails/grails-core
Browse files Browse the repository at this point in the history
  • Loading branch information
graemerocher committed Feb 27, 2015
2 parents 441831e + d9c2f74 commit c7ebac8
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -137,8 +137,7 @@ class GitProfileRepository implements ProfileRepository{
if(forceUpdate || !fetchHead.exists() || fetchHead.lastModified() < System.currentTimeMillis() - updateInterval) {
try {
Git git = Git.open(profilesDirectory)
git.fetch()
git.rebase()
git.fetch().call()
} catch (Exception e) {
GrailsConsole.getInstance().error("Problem updating profiles from origin git repository", e)
}
Expand Down

0 comments on commit c7ebac8

Please sign in to comment.