summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHeila Botha <heilamvdm@gmail.com>2020-05-29 13:44:26 +0200
committerHeila Botha <heilamvdm@gmail.com>2020-05-29 13:44:26 +0200
commit0dc535a066479ebee25819e53f2e3d47f32b8a19 (patch)
tree449112e9c07751daa80dd3685ca63684d2e648b2
parent50318abb33c636003d85c8a703f242998c679816 (diff)
Update CHANGELOG and fix typo
-rw-r--r--CHANGELOG.md4
-rw-r--r--lib/license/finder/ext/go_modules.rb2
2 files changed, 5 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 8a77e58..a51e1bd 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,9 @@
# GitLab License management changelog
+## v3.10.1
+
+- Fix dependency scanning in golang projects. (!160)
+
## v3.10.0
- Add initial support for the [Conan](https://conan.io/) package manger. (!156)
diff --git a/lib/license/finder/ext/go_modules.rb b/lib/license/finder/ext/go_modules.rb
index 3c5c544..b0c62f2 100644
--- a/lib/license/finder/ext/go_modules.rb
+++ b/lib/license/finder/ext/go_modules.rb
@@ -25,7 +25,7 @@ module LicenseFinder
end
def go_list_command
- # go 1.14 adds an explicit '-mod=vendor' flag
+ # go 1.14 adds an implcit '-mod=vendor' flag
# When using a vendor directory, 'go list -m all' does not work
# See: https://github.com/golang/go/issues/35589
[:go, :list, '-m', '-mod=mod', '-f', "'{{.Path}},{{.Version}},{{.Dir}}'", :all]