autobuild 1.5.38 → 1.5.39
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/Changes.txt +3 -0
- data/lib/autobuild.rb +6 -0
- data/lib/autobuild/import/git.rb +1 -1
- data/lib/autobuild/importer.rb +1 -2
- data/lib/autobuild/version.rb +1 -1
- metadata +4 -4
data/Changes.txt
CHANGED
data/lib/autobuild.rb
CHANGED
data/lib/autobuild/import/git.rb
CHANGED
|
@@ -333,7 +333,7 @@ module Autobuild
|
|
|
333
333
|
end
|
|
334
334
|
|
|
335
335
|
Subprocess.run(package, :import,
|
|
336
|
-
Autobuild.tool('git'), 'clone', '-o', 'autobuild', repository, package.srcdir)
|
|
336
|
+
Autobuild.tool('git'), 'clone', '-o', 'autobuild', '--recursive', repository, package.srcdir)
|
|
337
337
|
|
|
338
338
|
Dir.chdir(package.srcdir) do
|
|
339
339
|
if push_to
|
data/lib/autobuild/importer.rb
CHANGED
|
@@ -127,8 +127,7 @@ class Importer
|
|
|
127
127
|
fallback_importer = handler.call(package, self)
|
|
128
128
|
if fallback_importer.kind_of?(Importer)
|
|
129
129
|
begin
|
|
130
|
-
fallback_importer.send(*args, &block)
|
|
131
|
-
return
|
|
130
|
+
return fallback_importer.send(*args, &block)
|
|
132
131
|
rescue Exception
|
|
133
132
|
raise error
|
|
134
133
|
end
|
data/lib/autobuild/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: autobuild
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 77
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 1
|
|
8
8
|
- 5
|
|
9
|
-
-
|
|
10
|
-
version: 1.5.
|
|
9
|
+
- 39
|
|
10
|
+
version: 1.5.39
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Sylvain Joyeux
|
|
@@ -15,7 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2011-05-
|
|
18
|
+
date: 2011-05-23 00:00:00 Z
|
|
19
19
|
dependencies:
|
|
20
20
|
- !ruby/object:Gem::Dependency
|
|
21
21
|
name: rake
|