build-tool 0.6.8 → 0.6.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/History.rdoc +5 -0
- data/lib/build-tool/vcs/git-svn.rb +2 -2
- data/lib/build-tool/version.rb +1 -1
- metadata +2 -2
data/History.rdoc
CHANGED
@@ -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
|
136
|
-
svnurlcur = Pathname.new( gitconfig["svn-remote.svn.url"] )
|
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}`"
|
data/lib/build-tool/version.rb
CHANGED
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.
|
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-
|
12
|
+
date: 2013-07-09 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: logging
|