ebm 0.0.13 → 0.0.14

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +5 -5
  2. data/lib/commands/status.rb +6 -5
  3. data/lib/info.rb +1 -1
  4. 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
- data.tar.gz: ef8fcd209905525a617b89701640b0ef94b2e1a1
7
- metadata.gz: d222c1df8e6aaaaf53206431c5b0397ed212c3b4
3
+ metadata.gz: 6ed5b9bfdba6c7db8b4b75cee27af82e801591a2
4
+ data.tar.gz: 39ef0f6362ad6d0cb15394ac6e2bde14bdc2b65f
5
+ SHA512:
6
+ metadata.gz: 13933f2f82ea3277ccce683366f838f84f6c1d5b4d16b429c308a956b6024eda9e42cd726adac06f122648c17102246fc642f700b3f2236851be2f51ee1a6761
7
+ data.tar.gz: b8a2f41f613527ed54f8f77d9c51be69cebe44e86c3749d6537e70e04dd9dcda332486f6a57a15c69818505d8f6c23884cbf54d033f7662abab5e9cec2160649
@@ -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
@@ -7,6 +7,6 @@
7
7
  #
8
8
  class Info
9
9
  def self.version
10
- "0.0.13"
10
+ "0.0.14"
11
11
  end
12
12
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ebm
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.13
4
+ version: 0.0.14
5
5
  platform: ruby
6
6
  authors:
7
7
  - Greg Seitz