diff options
author | Florian Eckert <fe@dev.tdt.de> | 2020-02-14 09:12:31 +0100 |
---|---|---|
committer | Florian Eckert <fe@dev.tdt.de> | 2020-02-14 09:20:48 +0100 |
commit | b9292a6f575e5bd440b2011006489c06a3dcb833 (patch) | |
tree | 8b3cda8ae6e645a9494b51f9240a4e194a2618b3 /luci.mk | |
parent | 1f8a3c04178e21f45f3908fd476ec3b3dad73c69 (diff) |
luci.mk: move /tmp/luci-modulecache remove to package postinst script
Signed-off-by: Florian Eckert <fe@dev.tdt.de>
Diffstat (limited to 'luci.mk')
-rw-r--r-- | luci.mk | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -226,6 +226,7 @@ define Package/$(PKG_NAME)/postinst [ -n "$${IPKG_INSTROOT}" ] || {$(foreach script,$(LUCI_DEFAULTS), (. /etc/uci-defaults/$(script)) && rm -f /etc/uci-defaults/$(script)) rm -f /tmp/luci-indexcache + rm -rf /tmp/luci-modulecache/ exit 0 } endef @@ -233,6 +234,7 @@ else define Package/$(PKG_NAME)/postinst [ -n "$${IPKG_INSTROOT}" ] || { rm -f /tmp/luci-indexcache + rm -rf /tmp/luci-modulecache/ exit 0 } endef |