From: Jo-Philipp Wich Date: Sun, 3 May 2020 16:24:34 +0000 (+0200) Subject: opkg-cl: don't read feeds on opkg update X-Git-Url: http://git.openwrt.org/openwrt/svn-archive.git?a=commitdiff_plain;h=2a0210f42b6d90453a1eeeefd0e8e998c3bae1ea;p=project%2Fopkg-lede.git opkg-cl: don't read feeds on opkg update Signed-off-by: Jo-Philipp Wich --- diff --git a/src/opkg-cl.c b/src/opkg-cl.c index a3ea5c1..351574b 100644 --- a/src/opkg-cl.c +++ b/src/opkg-cl.c @@ -413,7 +413,8 @@ int main(int argc, char *argv[]) !strcmp(cmd_name, "list-installed") || !strcmp(cmd_name, "list_changed_conffiles") || !strcmp(cmd_name, "list-changed-conffiles") || - !strcmp(cmd_name, "status")) + !strcmp(cmd_name, "status") || + !strcmp(cmd_name, "update")) noreadfeedsfile = 1; cmd = opkg_cmd_find(cmd_name);