diff options
| author | mo khan <mo.khan@gmail.com> | 2020-11-03 15:38:05 -0700 |
|---|---|---|
| committer | mo khan <mo.khan@gmail.com> | 2020-11-10 14:28:21 -0700 |
| commit | 6001e7586f04528067b16c08a6b046be5b5b62ec (patch) | |
| tree | 2bab9c7af37ede194edc8283405a07f59caea8d8 /lib/license/finder/ext/conan.rb | |
| parent | 191185c4303768c6d9a1431c35143501c06ee4d7 (diff) | |
use recursive scan by defaultrecursive-default
docs: update CHANGELOG and version
feat: scan packages in parallel
fix: prevent infinite recursion
Diffstat (limited to 'lib/license/finder/ext/conan.rb')
| -rw-r--r-- | lib/license/finder/ext/conan.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/license/finder/ext/conan.rb b/lib/license/finder/ext/conan.rb index 90e7d9b..26e45aa 100644 --- a/lib/license/finder/ext/conan.rb +++ b/lib/license/finder/ext/conan.rb @@ -2,8 +2,8 @@ module LicenseFinder class Conan - def possible_package_paths - [project_path.join('conanfile.txt')] + def active? + project_path.join('conanfile.txt').exist? end def prepare |
