kitchen-dokken 2.0.6 → 2.0.7

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
  SHA1:
3
- metadata.gz: f7c8defb01744cfe951b4469cccf767a15d32550
4
- data.tar.gz: 3a42960cf5baba4b3e68b80d898d19eb40335337
3
+ metadata.gz: e66f31875d74c58a5bcc9b8e76478e5196d4eb3b
4
+ data.tar.gz: 14e64d58c9c35089e8b79e3a55375c722d666a28
5
5
  SHA512:
6
- metadata.gz: bf2bd4e08a40cf0811b3da598bdae3abebce1b6a834d0c98f26e5b82450adaeaec827aa5fd357fe0604a486607eee749bf258d1cd05ce70b81e0b8163e752528
7
- data.tar.gz: 543029e15b150737392d3de7ef2334f33642e0e4c2b66096f193ffdeb2411933bb2a1af31be88c1272c31483933f744c7372404441bea911d18db366dc55b5db
6
+ metadata.gz: aa7987c6d730e75d548a86c6f976e5c74b5d53cea2da2fdf4ee4384e65022b98bcb8e0ef4cbb4e79ca5d05da439afeac431d52fcce8b55fe1ea4087025340fc8
7
+ data.tar.gz: 0793a712da61fd93fe39051a8ecfae47b150c89e6613fbbfbcac59e21d0b4e68113df1002f4d9dc511678d0203e0cdaf3f093753217f2b900d587568d0a2fe0b
@@ -19,6 +19,6 @@
19
19
  module Kitchen
20
20
  module Driver
21
21
  # Version string for Dokken Kitchen driver
22
- DOKKEN_VERSION = '2.0.6'.freeze
22
+ DOKKEN_VERSION = '2.0.7'.freeze
23
23
  end
24
24
  end
@@ -68,7 +68,7 @@ module Kitchen
68
68
 
69
69
  with_retries { @runner = ::Docker::Container.get(instance_name, {}, docker_connection) }
70
70
  with_retries do
71
- o = @runner.exec(Shellwords.shellwords(command)) { |_stream, chunk| print chunk.to_s }
71
+ o = @runner.exec(Shellwords.shellwords(command), 'e' => {'TERM' => 'xterm'} ) { |_stream, chunk| print chunk.to_s }
72
72
  @exit_code = o[2]
73
73
  end
74
74
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kitchen-dokken
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.6
4
+ version: 2.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sean OMeara