File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 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/).
4545- A copy/paste error that prevented compiler warning flags from being supplied has been fixed, via jgfoster
4646- RSpec was not communicating compile errors from unit test executables that failed to build. Now it does, via jgfoster
4747- 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 ` )
4849
4950### Security
5051
Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ def examples_dir
9898 #
9999 # @return [bool]
100100 def installed?
101- path . exist?
101+ path . exist? || path . symlink?
102102 end
103103
104104 # install a library by name
You can’t perform that action at this time.
0 commit comments