diff options
Diffstat (limited to 'src/delivery.c')
-rw-r--r-- | src/delivery.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/delivery.c b/src/delivery.c index e69ce2f..ec4c34c 100644 --- a/src/delivery.c +++ b/src/delivery.c @@ -1498,7 +1498,12 @@ void delivery_defer_packages(struct Delivery *ctx, int type) { } } - ignore_pkg = 1; + if (DEFER_PIP == type && python_package_exists(PYPI_INDEX_DEFAULT, name, version)) { + fprintf(stderr, "%s-%s is present on %s\n", name, version, PYPI_INDEX_DEFAULT); + ignore_pkg = 0; + } else { + ignore_pkg = 1; + } break; } } |