We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e0195ee + b96a363 commit ad4a4caCopy full SHA for ad4a4ca
CHANGELOG.md
@@ -7,6 +7,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
7
### Added
8
- TODO.md - a list of future aspirations for some brave spirit with both time and willingness
9
10
+### Fixed
11
+- fixed --list-models (@nickhilliard)
12
+- return exception if host specification line returns no hosts (@nickhilliard)
13
+
14
## [0.7.0 - 2025-01-21]
15
16
lib/oxidized/script/cli.rb
@@ -72,6 +72,7 @@ def initialize
72
exit
73
end
74
raise NothingToDo, 'nothing to do, give command or -x' if not @cmd and not @opts[:commands]
75
+ raise NothingToDo, 'nothing to do, no hosts matched' if get_hosts.empty?
76
77
78
0 commit comments