Fix for issue #36

To fix https://github.com/derisamedia/luci-theme-alpha/issues/36 what needs to be edited:
- postinst:
Fix this by changing the new setup without causing an error when installing every OpenWRT package.
This commit is contained in:
Ryukura 2025-01-04 00:32:18 +07:00 committed by GitHub
parent ee73e617ff
commit dca9cdfc94
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-alpha ]; then
. /etc/uci-defaults/30-luci-theme-alpha
rm -f /etc/uci-defaults/30-luci-theme-alpha
fi
fi
exit 0
endef
$(eval $(call BuildPackage,luci-theme-$(THEME_NAME)))