autoproj 1.12.1 → 1.12.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/autoproj/ops/main_config_switcher.rb +5 -5
- data/lib/autoproj/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8175c51311f09040e84654e66de8fcaa1389a289
|
4
|
+
data.tar.gz: f5e0cb0c5d683be7c7d7daa15cf46afe46a58fbd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fba4def407135c8a4ffca75bd5cf2641e51dab54f219aa34eee7e18f2505147b1cabcd2c87f8765f34e18b1f753c288fddd72872d6f0a6633b336f567b7d8d0c
|
7
|
+
data.tar.gz: 8b724473e08ca5e0c21a1b97a3082da2c5193b7e9b89d8dfebaaaa71b4382560662f4de0c89864b3405882b79f56f4b30857d5e15bb9b663f0aad28c641629d2
|
@@ -60,11 +60,11 @@ 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
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
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
68
|
raise Autobuild::Exception, ""
|
69
69
|
end
|
70
70
|
end
|
data/lib/autoproj/version.rb
CHANGED