mirror of
https://github.com/derisamedia/luci-theme-alpha.git
synced 2025-04-04 22:33:50 +08:00
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:
parent
ee73e617ff
commit
dca9cdfc94
10
Makefile
10
Makefile
@ -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)))
|
||||
|
Loading…
x
Reference in New Issue
Block a user