Skip to content

Commit de7bdcd

Browse files
Fix bug in detect dynamic deb tatic (#1401)
* fix deb tatic in detect dynamic
1 parent f186595 commit de7bdcd

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

Changelog.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# FOSSA CLI Changelog
22

3+
## v3.9.12
4+
- `--detect-dynamic`: Fix deb tatic parsing ([#1401](https://github.com/fossas/fossa-cli/pull/1401)).
5+
36
## v3.9.11
47
- Licensing: Add new rules for unity licenses. Add the Redis Source Available License.
58

src/App/Fossa/VSI/DynLinked/Internal/Lookup/DEB.hs

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ debTactic root file | runningLinux = do
3535
Nothing -> pure Nothing
3636
Just name -> do
3737
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)
3939
debTactic _ _ = pure Nothing
4040

4141
packageForFile :: (Has Diagnostics sig m, Has Exec sig m) => Path Abs Dir -> Path Abs File -> m (Maybe Text)

0 commit comments

Comments
 (0)