Skip to content

Commit

Permalink
lib: don't unpack packages that only need to be configured
Browse files Browse the repository at this point in the history
  • Loading branch information
Duncaen committed Jan 10, 2024
1 parent 48c9879 commit bed6719
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions lib/transaction_commit.c
Original file line number Diff line number Diff line change
Expand Up @@ -338,6 +338,11 @@ xbps_transaction_commit(struct xbps_handle *xhp)
strerror(rv));
goto out;
}
} else if (ttype == XBPS_TRANS_CONFIGURE) {
/*
* Package just needs to be configured, ignore it.
*/
continue;
} else if (ttype == XBPS_TRANS_HOLD) {
/*
* Package is on hold mode, ignore it.
Expand Down

0 comments on commit bed6719

Please sign in to comment.