1
0

mkbasepot.sh 309 B

123456789101112131415
  1. #!/bin/sh
  2. [ -d ./build ] || {
  3. echo "Please execute as ./build/mkbasepot.sh" >&2
  4. exit 1
  5. }
  6. echo -n "Updating modules/luci-base/po/templates/base.pot ... "
  7. ./build/i18n-scan.pl \
  8. modules/luci-base/ modules/luci-mod-admin-full/ \
  9. protocols/ themes/ \
  10. > modules/luci-base/po/templates/base.pot
  11. echo "done"