Skip to content

Commit f9679d5

Browse files
committed
Fix Host reference in test runner script
1 parent 3269720 commit f9679d5

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1616
### Removed
1717

1818
### Fixed
19+
- Improper reference to `Host` in `arduino_ci.rb` test runner is now properly qualified
1920

2021
### Security
2122

exe/arduino_ci.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ def file_is_hidden_somewhere?(path)
157157
# print out some files
158158
def display_files(pathname)
159159
# `find` doesn't follow symlinks, so we should instead
160-
realpath = Host.symlink?(pathname) ? Host.readlink(pathname) : pathname
160+
realpath = ArduinoCI::Host.symlink?(pathname) ? ArduinoCI::Host.readlink(pathname) : pathname
161161

162162
# suppress directories and dotfile-based things
163163
all_files = realpath.find.select(&:file?)

0 commit comments

Comments
 (0)