ebm 0.0.13 → 0.0.14
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 +5 -5
- data/lib/commands/status.rb +6 -5
- data/lib/info.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
SHA512:
|
3
|
-
data.tar.gz: dfe1224e61bb17252599956595bc87af6bff06e26d7904e2cd061bbb81bbf3fe42f79b5180c484e629146b10c15224dcb6052f32d4895ee1ffbe470d2c26ebfd
|
4
|
-
metadata.gz: 57467a5d326b1c76f046b0c90ef6abbe6ae2674689facd201c055f2d3f5a63f530b1b07208f286e2dd426c7a3ead79ac892afc627a8fac5a0baa1c1087a005fd
|
5
2
|
SHA1:
|
6
|
-
|
7
|
-
|
3
|
+
metadata.gz: 6ed5b9bfdba6c7db8b4b75cee27af82e801591a2
|
4
|
+
data.tar.gz: 39ef0f6362ad6d0cb15394ac6e2bde14bdc2b65f
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 13933f2f82ea3277ccce683366f838f84f6c1d5b4d16b429c308a956b6024eda9e42cd726adac06f122648c17102246fc642f700b3f2236851be2f51ee1a6761
|
7
|
+
data.tar.gz: b8a2f41f613527ed54f8f77d9c51be69cebe44e86c3749d6537e70e04dd9dcda332486f6a57a15c69818505d8f6c23884cbf54d033f7662abab5e9cec2160649
|
data/lib/commands/status.rb
CHANGED
@@ -35,16 +35,17 @@ module Commands
|
|
35
35
|
# determine config_name by extracting parent of our directory
|
36
36
|
config_name = EbmSharedLib.config_name_from_dir(Dir.pwd)
|
37
37
|
# config_name = "#{Dir.pwd}".split("/")[-2]
|
38
|
-
if config_name.nil?
|
39
|
-
raise "No version directory found. This command must be run from the top level directory (i.e. iphone_3.1)."
|
40
|
-
end
|
38
|
+
# if config_name.nil?
|
39
|
+
# raise "No version directory found. This command must be run from the top level directory (i.e. iphone_3.1)."
|
40
|
+
# end
|
41
41
|
|
42
42
|
# try to make sure the repo is available
|
43
43
|
EbmSharedLib.prepare_config_repo
|
44
|
-
info = EbmSharedLib.read_repo_config(config_name)
|
44
|
+
info = EbmSharedLib.read_repo_config(config_name, "Config not found, make sure you are in the top level version directory.")
|
45
45
|
|
46
46
|
# Back up to version parent dir. This directory contains the top level repos.
|
47
|
-
top_dir = File.expand_path("#{Dir.pwd}/..")
|
47
|
+
# top_dir = File.expand_path("#{Dir.pwd}/..")
|
48
|
+
top_dir = Dir.pwd
|
48
49
|
|
49
50
|
repos = info[:repos]
|
50
51
|
repos.each do |repo|
|
data/lib/info.rb
CHANGED