Skip to content

Commit

Permalink
fix: remove spaces when splitting dpkg depends
Browse files Browse the repository at this point in the history
  • Loading branch information
nkraetzschmar committed Aug 10, 2023
1 parent fabfb20 commit 5bb1d39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dpkg_depends
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ function set_check {
}

function parse_dpkg_depends {
sed 's/[,|] */\n/g' | sed 's/ *(.*)$//' | sed '/^$/d'
sed 's/ *[,|] */\n/g' | sed 's/ *(.*)$//' | sed '/^$/d'
}

function dpkg_depends {
Expand Down

0 comments on commit 5bb1d39

Please sign in to comment.