Skip to content

Commit bed6719

Browse files
committed
lib: don't unpack packages that only need to be configured
1 parent 48c9879 commit bed6719

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

lib/transaction_commit.c

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -338,6 +338,11 @@ xbps_transaction_commit(struct xbps_handle *xhp)
338338
strerror(rv));
339339
goto out;
340340
}
341+
} else if (ttype == XBPS_TRANS_CONFIGURE) {
342+
/*
343+
* Package just needs to be configured, ignore it.
344+
*/
345+
continue;
341346
} else if (ttype == XBPS_TRANS_HOLD) {
342347
/*
343348
* Package is on hold mode, ignore it.

0 commit comments

Comments
 (0)