File tree 2 files changed +2
-1
lines changed
2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -45,6 +45,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
45
45
- A copy/paste error that prevented compiler warning flags from being supplied has been fixed, via jgfoster
46
46
- RSpec was not communicating compile errors from unit test executables that failed to build. Now it does, via jgfoster
47
47
- Windows paths now avoid picking up backslashes, for proper equality comparisons
48
+ - Libraries are now considered installed if their entry is a symlink (for which ` exist? ` would return ` false ` )
48
49
49
50
### Security
50
51
Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ def examples_dir
98
98
#
99
99
# @return [bool]
100
100
def installed?
101
- path . exist?
101
+ path . exist? || path . symlink?
102
102
end
103
103
104
104
# install a library by name
You can’t perform that action at this time.
0 commit comments