autoproj 2.8.1 → 2.8.2
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.
- checksums.yaml +4 -4
- data/bin/autoproj_bootstrap +4 -4
- data/bin/autoproj_install +4 -4
- data/lib/autoproj/ops/install.rb +1 -1
- data/lib/autoproj/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1254fdb26e9589090bf68081006f181d779aea88b2e41d866d240571577d3206
|
|
4
|
+
data.tar.gz: d10d4df38231e95bddddef14255b6251a115ac6b75f6228ca77816d10298f1ad
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 33841beedafa7dd02fc64763a004d0326824c90ee0187895c4b8fefba7b7be615f61bc48decff52e9d63c0b5bb9cba9d671619bcdfe8b68482e7d395088e5e2b
|
|
7
|
+
data.tar.gz: 3bfacbe63c2d5f1f46a00dd1f2c82d79cd2ca8a64e0ba9a334651ca201a93f8f0c5f65786fdb224cce4c2b2c29a274b2f5cd3722dc0ce5d0bf5bb0a716b6dcb8
|
data/bin/autoproj_bootstrap
CHANGED
|
@@ -294,7 +294,7 @@ module Autoproj
|
|
|
294
294
|
out: '/dev/null')
|
|
295
295
|
return if !result
|
|
296
296
|
|
|
297
|
-
bundler_path = File.join(gems_gem_home, 'bin', '
|
|
297
|
+
bundler_path = File.join(gems_gem_home, 'bin', 'bundle')
|
|
298
298
|
if File.exist?(bundler_path)
|
|
299
299
|
bundler_path
|
|
300
300
|
end
|
|
@@ -314,14 +314,14 @@ module Autoproj
|
|
|
314
314
|
'--env-shebang', '--no-document', '--no-format-executable',
|
|
315
315
|
'--clear-sources', '--source', gem_source,
|
|
316
316
|
*local, "--bindir=#{File.join(gems_gem_home, 'bin')}",
|
|
317
|
-
'
|
|
317
|
+
'bundle', **redirection)
|
|
318
318
|
|
|
319
319
|
if !result
|
|
320
320
|
STDERR.puts "FATAL: failed to install bundler in #{gems_gem_home}"
|
|
321
321
|
nil
|
|
322
322
|
end
|
|
323
323
|
|
|
324
|
-
bundler_path = File.join(gems_gem_home, 'bin', '
|
|
324
|
+
bundler_path = File.join(gems_gem_home, 'bin', 'bundle')
|
|
325
325
|
if File.exist?(bundler_path)
|
|
326
326
|
bundler_path
|
|
327
327
|
else
|
|
@@ -419,7 +419,7 @@ if defined?(Bundler)
|
|
|
419
419
|
exec($0, *ARGV)
|
|
420
420
|
end
|
|
421
421
|
end
|
|
422
|
-
ENV['BUNDLE_GEMFILE']
|
|
422
|
+
ENV['BUNDLE_GEMFILE'] ||= '#{autoproj_gemfile_path}'
|
|
423
423
|
RESTART_BUNDLER
|
|
424
424
|
script_lines.join
|
|
425
425
|
end
|
data/bin/autoproj_install
CHANGED
|
@@ -294,7 +294,7 @@ module Autoproj
|
|
|
294
294
|
out: '/dev/null')
|
|
295
295
|
return if !result
|
|
296
296
|
|
|
297
|
-
bundler_path = File.join(gems_gem_home, 'bin', '
|
|
297
|
+
bundler_path = File.join(gems_gem_home, 'bin', 'bundle')
|
|
298
298
|
if File.exist?(bundler_path)
|
|
299
299
|
bundler_path
|
|
300
300
|
end
|
|
@@ -314,14 +314,14 @@ module Autoproj
|
|
|
314
314
|
'--env-shebang', '--no-document', '--no-format-executable',
|
|
315
315
|
'--clear-sources', '--source', gem_source,
|
|
316
316
|
*local, "--bindir=#{File.join(gems_gem_home, 'bin')}",
|
|
317
|
-
'
|
|
317
|
+
'bundle', **redirection)
|
|
318
318
|
|
|
319
319
|
if !result
|
|
320
320
|
STDERR.puts "FATAL: failed to install bundler in #{gems_gem_home}"
|
|
321
321
|
nil
|
|
322
322
|
end
|
|
323
323
|
|
|
324
|
-
bundler_path = File.join(gems_gem_home, 'bin', '
|
|
324
|
+
bundler_path = File.join(gems_gem_home, 'bin', 'bundle')
|
|
325
325
|
if File.exist?(bundler_path)
|
|
326
326
|
bundler_path
|
|
327
327
|
else
|
|
@@ -419,7 +419,7 @@ if defined?(Bundler)
|
|
|
419
419
|
exec($0, *ARGV)
|
|
420
420
|
end
|
|
421
421
|
end
|
|
422
|
-
ENV['BUNDLE_GEMFILE']
|
|
422
|
+
ENV['BUNDLE_GEMFILE'] ||= '#{autoproj_gemfile_path}'
|
|
423
423
|
RESTART_BUNDLER
|
|
424
424
|
script_lines.join
|
|
425
425
|
end
|
data/lib/autoproj/ops/install.rb
CHANGED
|
@@ -409,7 +409,7 @@ def self.shim_bundler(script_lines, ruby_executable, autoproj_gemfile_path, gems
|
|
|
409
409
|
exec($0, *ARGV)
|
|
410
410
|
end
|
|
411
411
|
end
|
|
412
|
-
ENV['BUNDLE_GEMFILE']
|
|
412
|
+
ENV['BUNDLE_GEMFILE'] ||= '#{autoproj_gemfile_path}'
|
|
413
413
|
RESTART_BUNDLER
|
|
414
414
|
script_lines.join
|
|
415
415
|
end
|
data/lib/autoproj/version.rb
CHANGED