sonic-screwdriver 2.2.2 → 2.2.3
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 +4 -4
- data/CHANGELOG.md +3 -0
- data/lib/sonic/execute.rb +2 -2
- data/lib/sonic/version.rb +1 -1
- data/sonic.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2ac8a33e325657ad0ee4fab9c2d7a4a1d8c3fafbaf0017fed20446983869c39b
|
|
4
|
+
data.tar.gz: 4b8bcf43b60ae33936f07b4d800173b2c1df27d091f1fac3e8f2f082501a8823
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 97d9a1992af8d4e2dbede1ae0f8f965b773b94cde16bc06493fc99932cdbc3205c63ebef16c649e95e2f6f9d539775c45ed36db01897f7e33fcc80fe5509f9bb
|
|
7
|
+
data.tar.gz: dd12a4015571ef144a3a793f9cae38c09ab4f55f8353aea07fbe8c5d598057167b5111988d1a12c595a3d044213bf126deca1fc5c8901fa21b23b3742c28cc94
|
data/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,9 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
This project *loosely* adheres to [Semantic Versioning](http://semver.org/), even before v1.0.
|
|
5
5
|
|
|
6
|
+
## [2.2.3] - 2021-04-12
|
|
7
|
+
- [#12](https://github.com/boltops-tools/sonic/pull/12) fix cli check
|
|
8
|
+
|
|
6
9
|
## [2.2.2] - 2021-04-12
|
|
7
10
|
- [#11](https://github.com/boltops-tools/sonic/pull/11) cli check
|
|
8
11
|
|
data/lib/sonic/execute.rb
CHANGED
|
@@ -53,7 +53,7 @@ module Sonic
|
|
|
53
53
|
puts
|
|
54
54
|
return if @options[:noop]
|
|
55
55
|
status = wait(command_id)
|
|
56
|
-
|
|
56
|
+
display_ssm_output(command_id)
|
|
57
57
|
display_console_url(command_id)
|
|
58
58
|
|
|
59
59
|
if status == "Success"
|
|
@@ -66,7 +66,7 @@ module Sonic
|
|
|
66
66
|
end
|
|
67
67
|
|
|
68
68
|
def exit_status(code)
|
|
69
|
-
exit(code)
|
|
69
|
+
exit(code) if cli?
|
|
70
70
|
|
|
71
71
|
if code == 0
|
|
72
72
|
true
|
data/lib/sonic/version.rb
CHANGED
data/sonic.gemspec
CHANGED
|
@@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
|
|
|
12
12
|
spec.homepage = "http://sonic-screwdriver.cloud/"
|
|
13
13
|
spec.license = "MIT"
|
|
14
14
|
|
|
15
|
-
spec.files = `git ls-files`.split($/)
|
|
15
|
+
spec.files = File.directory?('.git') ? `git ls-files`.split($/) : Dir.glob("**/*")
|
|
16
16
|
spec.bindir = "exe"
|
|
17
17
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
18
18
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|