macinbox 4.1.0 → 4.1.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
  SHA256:
3
- metadata.gz: 46e2cfdb8a9c76d13ea099238939bdedcec98edfd1a3f791ab0287517c3b22d1
4
- data.tar.gz: fc0edb1c47757d08578f611fa6c9dddc6fcaa270b0a83a07c28651e0d3a7f84c
3
+ metadata.gz: 5a31a4d6aaf9847b9c872c3348fab0ad21870099d6aeebebc6fc9770bab65a46
4
+ data.tar.gz: 781ee5a53a99ad9b97fe454cb7a0812ca570618681bb04971cc2a5456fc8b981
5
5
  SHA512:
6
- metadata.gz: 26d4eae4f376a74da25f03832f1c98339d03141edcc1725369812cb4e001c0139a995ff5e45827619bbcbe74e07b7b4e0e8a68918b428df4c5f334c3b64526d1
7
- data.tar.gz: ffc40a0105fab49330f339d6009fbb28889df6eee3929d2de1db9ea34336879ddf08a06e97d26b247dc3705e6654c4789bb2de6784d3c28c16a916d8f76b112b
6
+ metadata.gz: 92d91201b6912624c0158c25488a3ce46e556640a2918d2e8f05ede62703b93b69415ef0955ca25ceec42a9fe075463c5284595bbf372a94b550384780a8e15a
7
+ data.tar.gz: 8bc8138d2fba664cb3273c1dce5e115d3c9e6d41db81e21a8318f793ef0f87793b0cfaffad72fe2d2b3431ac4e66da0592012b62c63a9227bd45eb1718900d42
@@ -1,3 +1,9 @@
1
+ ## 4.1.1 (April 21, 2020)
2
+
3
+ BUG FIXES:
4
+
5
+ - Do not silently continue if the `installer` command fails. [GH-51]
6
+
1
7
  ## 4.1.0 (April 21, 2020)
2
8
 
3
9
  FEATURES:
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- macinbox (4.1.0)
4
+ macinbox (4.1.1)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -17,7 +17,7 @@ module Macinbox
17
17
  Logger.error "WARNING: Temporary files were not removed. Run this command to remove them:"
18
18
  Logger.error "sudo rm -rf #{temp_dir_args}"
19
19
  else
20
- @temp_dirs.reverse.each do |temp_dir|
20
+ @temp_dirs.reverse_each do |temp_dir|
21
21
  FileUtils.remove_dir(temp_dir)
22
22
  end
23
23
  end
@@ -49,6 +49,7 @@ module Macinbox
49
49
  end
50
50
  end
51
51
  STDERR.puts TTY::Cursor::NORMAL
52
+ $? == 0 or raise Macinbox::Error.new("#{cmd.slice(0)} failed with non-zero exit code: #{$?.to_i}")
52
53
  end
53
54
 
54
55
  def self.write_file_to_io_with_progress(source, destination)
@@ -1,3 +1,3 @@
1
1
  module Macinbox
2
- VERSION = "4.1.0"
2
+ VERSION = "4.1.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: macinbox
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.1.0
4
+ version: 4.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Kramer