File tree 2 files changed +4
-1
lines changed
src/App/Fossa/VSI/DynLinked/Internal/Lookup
2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 1
1
# FOSSA CLI Changelog
2
2
3
+ ## v3.9.12
4
+ - ` --detect-dynamic ` : Fix deb tatic parsing ([ #1401 ] ( https://github.com/fossas/fossa-cli/pull/1401 ) ).
5
+
3
6
## v3.9.11
4
7
- Licensing: Add new rules for unity licenses. Add the Redis Source Available License.
5
8
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ debTactic root file | runningLinux = do
35
35
Nothing -> pure Nothing
36
36
Just name -> do
37
37
meta <- context (" Parse metadata for package " <> toText (show name) <> " , which owns file " <> toText (show file)) $ packageMeta root name
38
- pure (DynamicDependency file . Just . ResolvedLinuxPackage LinuxPackageManagerRPM <$> meta)
38
+ pure (DynamicDependency file . Just . ResolvedLinuxPackage LinuxPackageManagerDEB <$> meta)
39
39
debTactic _ _ = pure Nothing
40
40
41
41
packageForFile :: (Has Diagnostics sig m , Has Exec sig m ) => Path Abs Dir -> Path Abs File -> m (Maybe Text )
You can’t perform that action at this time.
0 commit comments