Skip to content
Snippets Groups Projects
Commit 947baeea authored by Natanael Copa's avatar Natanael Copa
Browse files

fetch: fix error message for --recursive

Give error message for `apk fetch --recursive missing`
parent e2b4bde4
No related branches found
No related tags found
No related merge requests found
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment