Skip to content

Commit

Permalink
Use the appropriate format to query installed packages.
Browse files Browse the repository at this point in the history
Fixes #64
  • Loading branch information
latin-1 authored and ripytide committed Jan 7, 2025
1 parent 7eb1e10 commit fbfc33c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/backends/dnf.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ impl Backend for Dnf {
"repoquery",
"--installed",
"--queryformat",
"%{from_repo}/%{name}",
"%{from_repo}/%{name}\n",
],
Perms::Same,
false,
Expand All @@ -54,7 +54,7 @@ impl Backend for Dnf {
"repoquery",
"--userinstalled",
"--queryformat",
"%{from_repo}/%{name}",
"%{from_repo}/%{name}\n",
],
Perms::Same,
false,
Expand Down

0 comments on commit fbfc33c

Please sign in to comment.