We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3269720 commit f9679d5Copy full SHA for f9679d5
CHANGELOG.md
@@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
16
### Removed
17
18
### Fixed
19
+- Improper reference to `Host` in `arduino_ci.rb` test runner is now properly qualified
20
21
### Security
22
exe/arduino_ci.rb
@@ -157,7 +157,7 @@ def file_is_hidden_somewhere?(path)
157
# print out some files
158
def display_files(pathname)
159
# `find` doesn't follow symlinks, so we should instead
160
- realpath = Host.symlink?(pathname) ? Host.readlink(pathname) : pathname
+ realpath = ArduinoCI::Host.symlink?(pathname) ? ArduinoCI::Host.readlink(pathname) : pathname
161
162
# suppress directories and dotfile-based things
163
all_files = realpath.find.select(&:file?)
0 commit comments