kuber_kit 0.9.6 → 0.9.7

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: 31e5cee4b09ffeba97252188b31ebc0af612042569f731d7eabfae575360e2de
4
- data.tar.gz: 4ba08e5dc74933acb38103fada98647290946cb3733b05668e09302ea2b828ea
3
+ metadata.gz: 22fa30a7280f081e3071589c5573ecfef1c92d0da6c93f887a4270ed8c3569a7
4
+ data.tar.gz: 93bb6739fea844065a2a766888c5a1dbd0bb5be81939f6c22673d5cf04fcc1fd
5
5
  SHA512:
6
- metadata.gz: 91601cf6b45b0122293a7dd037f4e4dff9a89260e9e998a39c9b759970aafd0114df09785e76e7ae93f02a35244a47569b2a547cead73976964efb5ae17fb9b2
7
- data.tar.gz: bf4d57b5c80f7f0267be6977695400a3da3166e8a3945d3cae4a0c227718faaf95b454147c1dff15f0cfa73833d046f33092ec08ba05de8794db878b769a226b
6
+ metadata.gz: 2881ba6ef63cc7a93674628308c0f50b3a1d41999b9e4d7068e32d3df046321640c3f1ef4eeadd807ca0382f6b132630985ef113f2a54970b44488312cec4b1a
7
+ data.tar.gz: 5bf0b67143f884538587bd62c7817196417d7f6280af5066260fc3ca4bcc6ce86e4d7ff81b7178bb8559e500c40456f9d51e805ddf318e2c76d9777cf0805ead
data/CHANGELOG.md CHANGED
@@ -1,4 +1,4 @@
1
- **0.9.0-0.9.4**
1
+ **0.9.0-0.9.7**
2
2
  - Allow skipping confirmation during deployment
3
3
  - Added `kit sh` command to create a new shell
4
4
  - Use tmp dir as image builds parent dir for remote compilation
@@ -59,7 +59,7 @@ class KuberKit::Shell::LocalShell < KuberKit::Shell::AbstractShell
59
59
  end
60
60
 
61
61
  def replace!(shell_name: nil, env: [], log_command: true)
62
- shell_name ||= "$SHELL"
62
+ shell_name ||= "$SHELL --login"
63
63
  command = (env + [shell_name]).join(" ")
64
64
 
65
65
  if log_command
@@ -11,7 +11,11 @@ class KuberKit::Tools::BuildDirCleaner
11
11
 
12
12
  dirs_to_delete.each do |dir|
13
13
  bash_commands.rm_rf(shell, dir)
14
+ rescue KuberKit::Shell::AbstractShell::ShellError => e
15
+ ui.print_debug "BuildDirCleaner", "Error while removing directory: #{e.inspect}"
14
16
  end
17
+ rescue KuberKit::Shell::AbstractShell::DirNotFoundError
18
+ ui.print_debug "BuildDirCleaner", "Build directory not found"
15
19
  end
16
20
 
17
21
  private
@@ -1,3 +1,3 @@
1
1
  module KuberKit
2
- VERSION = "0.9.6"
2
+ VERSION = "0.9.7"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kuber_kit
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.6
4
+ version: 0.9.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Iskander Khaziev
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-05-03 00:00:00.000000000 Z
11
+ date: 2022-05-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: contracts