themes/openwrt.org: use ~= instead of not ( ... == ... )
[project/luci.git] / build / mkbasepot.sh
1 #!/bin/sh
2
3 [ -d ./build ] || {
4         echo "Please execute as ./build/mkbasepot.sh" >&2
5         exit 1
6 }
7
8 echo -n "Updating po/templates/base.pot ... "
9
10 ./build/i18n-scan.pl \
11         libs/core/ libs/web/ protocols/ \
12         modules/admin-core/ modules/admin-full/ \
13         themes/base/ themes/openwrt/ \
14 > po/templates/base.pot
15
16 echo "done"