diff options
Diffstat (limited to 'src/app_add.c')
-rw-r--r-- | src/app_add.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app_add.c b/src/app_add.c index 214bf67..1d20e81 100644 --- a/src/app_add.c +++ b/src/app_add.c @@ -160,7 +160,7 @@ static int add_main(void *ctx, struct apk_ctx *ac, struct apk_string_array *args if (non_repository_check(db)) return -1; - r = apk_pkg_read(db, *parg, &pkg); + r = apk_pkg_read(db, *parg, &pkg, TRUE); if (r != 0) { apk_err(out, "%s: %s", *parg, apk_error_str(r)); return -1; |