diff options
author | Timo Teräs <timo.teras@iki.fi> | 2023-03-23 13:12:34 +0200 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2023-04-11 20:55:13 +0300 |
commit | 4d8a920366143c38d5bc521470e353c11e788b04 (patch) | |
tree | cccb6d820a9bab4a0e57d030bef67c3576f36c95 /src/apk_applet.h | |
parent | 6c2af0f0d3381f1a2d12105e310ae47e120f5d4d (diff) | |
download | apk-tools-4d8a920366143c38d5bc521470e353c11e788b04.tar.gz apk-tools-4d8a920366143c38d5bc521470e353c11e788b04.tar.bz2 apk-tools-4d8a920366143c38d5bc521470e353c11e788b04.tar.xz apk-tools-4d8a920366143c38d5bc521470e353c11e788b04.zip |
db, dot, fetch, info, list, search: support --from=FROMSPEC
Allow omitting loading of system installed database and system
repositories for the commands that operate on package indexes
only.
Diffstat (limited to 'src/apk_applet.h')
-rw-r--r-- | src/apk_applet.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/apk_applet.h b/src/apk_applet.h index 0ae33b4..1e5b74f 100644 --- a/src/apk_applet.h +++ b/src/apk_applet.h @@ -61,7 +61,7 @@ struct apk_applet { int (*main)(void *ctx, struct apk_database *db, struct apk_string_array *args); }; -extern const struct apk_option_group optgroup_global, optgroup_commit; +extern const struct apk_option_group optgroup_global, optgroup_commit, optgroup_source; void apk_applet_register(struct apk_applet *); struct apk_applet *apk_applet_find(const char *name); |