build-tool 0.6.8 → 0.6.9

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,8 @@
1
+ == Version 0.6.9
2
+
3
+ == Bugfix
4
+ - Fix git-svn building a wrong repository url.
5
+
1
6
  == Version 0.6.8
2
7
 
3
8
  == Features
@@ -132,8 +132,8 @@ def check_config
132
132
  if checkedout?
133
133
  # Check that the remotes are the same as configured.
134
134
  gitconfig = Grit::RepoConfig.new(git.repo)
135
- svnurlrec = Pathname.new( config.repository.url ).join( remote_path ).cleanpath
136
- svnurlcur = Pathname.new( gitconfig["svn-remote.svn.url"] ).cleanpath
135
+ svnurlrec = Pathname.new( config.repository.url ).join( Pathname.new(remote_path).cleanpath )
136
+ svnurlcur = Pathname.new( gitconfig["svn-remote.svn.url"] )
137
137
  if svnurlcur.nil?
138
138
  if git.git( "svn init #{svnurl}" ) != 0
139
139
  raise GitError, "Error while initializing the repo `git svn init #{svnurlrec}`"
@@ -26,5 +26,5 @@ def recipe_version()
26
26
 
27
27
  end
28
28
 
29
- VERSION = Version.new( 0, 6, 8 )
29
+ VERSION = Version.new( 0, 6, 9 )
30
30
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: build-tool
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.8
4
+ version: 0.6.9
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-06-22 00:00:00.000000000 Z
12
+ date: 2013-07-09 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: logging