kitchen-dokken 2.0.6 → 2.0.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/kitchen/driver/dokken_version.rb +1 -1
- data/lib/kitchen/transport/dokken.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e66f31875d74c58a5bcc9b8e76478e5196d4eb3b
|
4
|
+
data.tar.gz: 14e64d58c9c35089e8b79e3a55375c722d666a28
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: aa7987c6d730e75d548a86c6f976e5c74b5d53cea2da2fdf4ee4384e65022b98bcb8e0ef4cbb4e79ca5d05da439afeac431d52fcce8b55fe1ea4087025340fc8
|
7
|
+
data.tar.gz: 0793a712da61fd93fe39051a8ecfae47b150c89e6613fbbfbcac59e21d0b4e68113df1002f4d9dc511678d0203e0cdaf3f093753217f2b900d587568d0a2fe0b
|
@@ -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
|
|