Merge pull request #44 from ryukora/patch-1

Fix for issue #36 (Installation Error: Missing File /etc/uci-defaults/30-luci-theme-alpha During IPK Installation)
This commit is contained in:
deri sahertian 2025-01-04 09:23:35 +07:00 committed by GitHub
commit 98b1486283
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -46,9 +46,13 @@ endef
define Package/luci-theme-$(THEME_NAME)/postinst
#!/bin/sh
[ -n "$${IPKG_INSTROOT}" ] || {
( . /etc/uci-defaults/30-luci-theme-$(THEME_NAME) ) && rm -f /etc/uci-defaults/30-luci-theme-$(THEME_NAME)
}
if [ -z "$${IPKG_INSTROOT}" ]; then
if [ -f /etc/uci-defaults/30-luci-theme-$(THEME_NAME) ]; then
. /etc/uci-defaults/30-luci-theme-$(THEME_NAME)
rm -f /etc/uci-defaults/30-luci-theme-$(THEME_NAME)
fi
fi
exit 0
endef
$(eval $(call BuildPackage,luci-theme-$(THEME_NAME)))