fix last deploy_tool patch

This commit is contained in:
2025-09-05 21:56:59 +03:00
parent c05b8b4095
commit 40cda7d988
2 changed files with 3 additions and 3 deletions

View File

@@ -468,7 +468,7 @@ bool procDpkg(const PIString & l) {
PIStringList lines = vs.split('\n').reverse();
for (auto l: lines) {
l = l.left(l.find(":"));
if (!l.isEmpty() && !l.endsWith("-cross")) all_deps << vs;
if (!l.isEmpty() && !l.endsWith("-cross")) all_deps << l;
return true;
}
}