mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-09-02 12:21:22 +02:00
30 lines
844 B
Diff
30 lines
844 B
Diff
From 947baeea1860a4eb44bb8636e1db295a7bc1d259 Mon Sep 17 00:00:00 2001
|
|
From: Natanael Copa <ncopa@alpinelinux.org>
|
|
Date: Thu, 10 Jan 2019 09:29:35 +0100
|
|
Subject: [PATCH] fetch: fix error message for --recursive
|
|
|
|
Give error message for `apk fetch --recursive missing`
|
|
---
|
|
src/fetch.c | 4 +++-
|
|
1 file changed, 3 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/src/fetch.c b/src/fetch.c
|
|
index e745d84..9a7c46a 100644
|
|
--- a/src/fetch.c
|
|
+++ b/src/fetch.c
|
|
@@ -229,8 +229,10 @@ static void mark_name_flags(struct apk_database *db, const char *match, struct a
|
|
if (!IS_ERR_OR_NULL(name)) {
|
|
name->auto_select_virtual = 1;
|
|
apk_deps_add(&ctx->world, &dep);
|
|
- } else
|
|
+ } else {
|
|
ctx->errors++;
|
|
+ mark_error(ctx, match, name);
|
|
+ }
|
|
}
|
|
|
|
static void mark_names_recursive(struct apk_database *db, struct apk_string_array *args, void *pctx)
|
|
--
|
|
2.20.1
|
|
|