mirror of
https://github.com/kenzok8/openwrt-packages.git
synced 2025-01-08 11:37:36 +08:00
11 lines
185 B
Bash
11 lines
185 B
Bash
#!/bin/sh
|
|
|
|
if [ "$PKG_UPGRADE" != 1 ]; then
|
|
uci batch <<-EOF
|
|
set luci.themes.Design=/luci-static/design
|
|
set luci.main.mediaurlbase=/luci-static/design
|
|
commit luci
|
|
EOF
|
|
fi
|
|
|
|
exit 0 |