cnvrg 1.5.9.5 → 1.5.9.6

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1038150f013eb708622bf134d1cb94e8c861fe5ef6ca0d545d7c641f78fa4dd0
4
- data.tar.gz: 97b7028be08f49a1d391af78bd2be2f8ffc136f410b1a9e5065a2d4a819ee15c
3
+ metadata.gz: 21d31e3db499e42fe6faa068ee24df40fe545abbb47ea4d889c533fec8da80bf
4
+ data.tar.gz: 89400de0669d8a6e5f42f6a0119bee89340d762a5bbd478627053464a62c3706
5
5
  SHA512:
6
- metadata.gz: 5fd3a2219fc4a362be0b6cf22f50e4bba86f7b98f344ec1ff57302bde94de59394a12aa4717221d17571727381ed93218b05cca4f0c074d1fcbde2fcff0f44af
7
- data.tar.gz: d017620576ab73330cd3f694c3008aa846d6212a3c31b44ab10027b585c78a047fe701ac8c83114fb2130642c67668f80906af9be2231b989dfec70a48be5605
6
+ metadata.gz: f61f9267faae5ff0c2cfd602dde3ce19f9416b3b698e4c34e15209d23e745ef09631a4d870d76d01ab1c4b68ed3404ac49dd350f9ea61a9266de784b3433347d
7
+ data.tar.gz: a26269207e972e4d5d4d815732cc5edf7137fe3aa383beb3794a57dd89d7557291514b7a9849448626f314b7877312159219538dd773625a9bf47599e7abe76c
@@ -55,7 +55,7 @@ module Cnvrg
55
55
  :command=>"sudo docker login --username=#{ENV["CNVRG_IMAGE_BUILD_USERNAME"]} --password=\"#{ENV["CNVRG_IMAGE_BUILD_PASSWORD"]}\""}
56
56
  exit_status, output, errors, _, _ = @executer.execute(command)
57
57
  all_logs = join_logs(output, errors)
58
- if exit_status > 0
58
+ if exit_status != 0
59
59
  raise StandardError.new(all_logs)
60
60
  end
61
61
  end
@@ -67,7 +67,7 @@ module Cnvrg
67
67
  :command=>"sudo docker push #{image_data["docker_name"]}"}
68
68
  exit_status, output, errors, _, _ = @executer.execute(command)
69
69
  all_logs = join_logs(output, errors)
70
- if exit_status > 0
70
+ if exit_status != 0
71
71
  raise StandardError.new(all_logs)
72
72
  end
73
73
  post_build_update(true)
@@ -1,4 +1,4 @@
1
1
  module Cnvrg
2
- VERSION = '1.5.9.5'
2
+ VERSION = '1.5.9.6'
3
3
  end
4
4
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cnvrg
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.9.5
4
+ version: 1.5.9.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yochay Ettun
@@ -448,7 +448,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
448
448
  - !ruby/object:Gem::Version
449
449
  version: '0'
450
450
  requirements: []
451
- rubygems_version: 3.0.4
451
+ rubygems_version: 3.0.3
452
452
  signing_key:
453
453
  specification_version: 4
454
454
  summary: A CLI tool for interacting with cnvrg.io.