From 9a008b080d8e86f5a88bba4ea38b377a6bcfa08d Mon Sep 17 00:00:00 2001 From: kenzok8 Date: Sun, 7 Apr 2024 12:20:29 +0800 Subject: [PATCH] update 2024-04-07 12:20:29 --- luci-app-store/Makefile | 2 +- luci-app-store/root/bin/is-opkg | 8 +++++--- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/luci-app-store/Makefile b/luci-app-store/Makefile index 8cb150264..319b2651e 100644 --- a/luci-app-store/Makefile +++ b/luci-app-store/Makefile @@ -11,7 +11,7 @@ LUCI_DEPENDS:=+curl +opkg +luci-base +tar +coreutils +coreutils-stat +libuci-lua LUCI_EXTRA_DEPENDS:=luci-lib-taskd (>=1.0.17) LUCI_PKGARCH:=all -PKG_VERSION:=0.1.14-2 +PKG_VERSION:=0.1.14-3 # PKG_RELEASE MUST be empty for luci.mk PKG_RELEASE:= diff --git a/luci-app-store/root/bin/is-opkg b/luci-app-store/root/bin/is-opkg index 01698cc2b..5bc97ae65 100755 --- a/luci-app-store/root/bin/is-opkg +++ b/luci-app-store/root/bin/is-opkg @@ -58,11 +58,13 @@ update() { return 1 fi - fcurl -o ${OPKG_CONF_DIR}/meta.conf "${FEEDS_SERVER}/all/meta.conf" && \ - fcurl -o ${OPKG_CONF_DIR}/all.conf "${FEEDS_SERVER}/all/isfeeds.conf" && \ - fcurl -o ${OPKG_CONF_DIR}/arch.conf "${FEEDS_SERVER}/${ARCH}/isfeeds.conf" || \ + echo "Fetch feed list for ${ARCH}" + fcurl --no-progress-meter -o ${OPKG_CONF_DIR}/meta.conf "${FEEDS_SERVER}/all/meta.conf" && \ + fcurl --no-progress-meter -o ${OPKG_CONF_DIR}/all.conf "${FEEDS_SERVER}/all/isfeeds.conf" && \ + fcurl --no-progress-meter -o ${OPKG_CONF_DIR}/arch.conf "${FEEDS_SERVER}/${ARCH}/isfeeds.conf" || \ return 1 + echo "Update feeds index" opkg -f ${IS_ROOT}/etc/opkg_o.conf --offline-root ${IS_ROOT} update return 0