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

fetch: disable all progress/log output with --stdout

parent 354ba70d
No related branches found
No related tags found
No related merge requests found
......@@ -241,8 +241,10 @@ static int fetch_main(void *pctx, struct apk_database *db, struct apk_string_arr
struct fetch_ctx *ctx = (struct fetch_ctx *) pctx;
void *mark = (ctx->flags & FETCH_RECURSIVE) ? mark_name_recursive : mark_name;
if (ctx->flags & FETCH_STDOUT)
if (ctx->flags & FETCH_STDOUT) {
apk_flags &= ~APK_PROGRESS;
apk_verbosity = 0;
}
if (ctx->outdir_fd == 0)
ctx->outdir_fd = AT_FDCWD;
......
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