autoproj 1.12.0 → 1.12.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: dc64d6f9ced9d44cb201ab31f5dbf2a84bdef777
4
- data.tar.gz: ea6d4f3c3d2db15a084c9d3348780dddd893d975
3
+ metadata.gz: 7e2ee9fe300a30429ca7c12afca958058d50c689
4
+ data.tar.gz: 7e11b16b835b22a248aeb7400c231104581fc58b
5
5
  SHA512:
6
- metadata.gz: b3b99d765575bc4526854ec74f3571b41181d30267f2b223a3e7e6e3a7f1194680fd0a9d99d86ab7489e20f7030a8373b7984e0dd23178e722dd7a4f2b21b52a
7
- data.tar.gz: 03740b0613ed3fcbd37b585c86d4c47decf8a8792d7f2898ccea2f79b8e0fcd765b83b2ad0d5669e9bf05339b07fa2da74697172d7b25e1f61fe964059b0940a
6
+ metadata.gz: e59714a1e7b66b5303035f73e44bd25c6a7e9af7bbd449f3f4db014c4eb283835ab2e305c38c2063c1fb2726a8abcffd85d25e07b91cc9e0247fe58d5b23c583
7
+ data.tar.gz: f9f6ea4a2ef29ac7ca513a5ec9fa522a4d367e35ac23b17e34c5977d8104ed9b9fc079c8e058bd682fed3ccb52e0c0bf7adfb5aa3104ccc63c1b16569f3b9e0f
@@ -60,12 +60,12 @@ module Autoproj
60
60
  if current_root = ENV['AUTOPROJ_CURRENT_ROOT']
61
61
  # Allow having a current root only if it is being reused
62
62
  if (current_root != root_dir) && !reuse.include?(current_root)
63
- Autoproj.error "the env.sh from #{ENV['AUTOPROJ_CURRENT_ROOT']} seem to already be sourced"
64
- Autoproj.error "start a new shell and try to bootstrap again"
65
- Autoproj.error
66
- Autoproj.error "you are allowed to boostrap from another autoproj installation"
67
- Autoproj.error "only if you reuse it with the --reuse flag"
68
- raise ConfigError
63
+ Autobuild.error "the env.sh from #{ENV['AUTOPROJ_CURRENT_ROOT']} seem to already be sourced"
64
+ Autobuild.error "start a new shell and try to bootstrap again"
65
+ Autobuild.error
66
+ Autobuild.error "you are allowed to boostrap from another autoproj installation"
67
+ Autobuild.error "only if you reuse it with the --reuse flag"
68
+ raise Autobuild::Exception, ""
69
69
  end
70
70
  end
71
71
  end
@@ -98,14 +98,13 @@ module Autoproj
98
98
  Autobuild.srcdir = Autoproj.root_dir
99
99
  Autobuild.logdir = File.join(Autobuild.prefix, 'log')
100
100
 
101
- Autoproj.manifest = Manifest.new
101
+ manifest = Autoproj.manifest = Manifest.new
102
102
  Tools.load_autoprojrc
103
103
  Autoproj.prepare_environment
104
104
 
105
105
  Autoproj::OSDependencies.define_osdeps_mode_option
106
- osdeps = Autoproj::OSDependencies.load_default
107
- osdeps.osdeps_mode
108
- Autoproj.osdeps = osdeps
106
+ manifest.osdeps.load_default
107
+ manifest.osdeps.osdeps_mode
109
108
 
110
109
  CmdLine.update_myself :force => true, :restart_on_update => false
111
110
  Autoproj.change_option 'reused_autoproj_installations', reuse, true
@@ -1,3 +1,3 @@
1
1
  module Autoproj
2
- VERSION = "1.12.0"
2
+ VERSION = "1.12.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: autoproj
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.12.0
4
+ version: 1.12.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rock Core Developers