Skip to content
This repository has been archived by the owner on Dec 4, 2020. It is now read-only.

Commit

Permalink
Watch for the Reinstalling keyword in pkgng output
Browse files Browse the repository at this point in the history
  • Loading branch information
Kris Moore committed Jun 10, 2013
1 parent b4236dc commit d305205
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src-qt4/pc-pkgmanager/mainWin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ void mainWin::slotReadPkgOutput() {
}

if ( uPackages ) {
if ( line.indexOf("Upgrading") == 0 ) {
if ( line.indexOf("Upgrading") == 0 || line.indexOf("Reinstalling") == 0 ) {
textStatus->setText(line);
curUpdate++;
progressUpdate->setValue(curUpdate);
Expand Down

0 comments on commit d305205

Please sign in to comment.