mirror of
https://github.com/kenzok8/small-package.git
synced 2026-01-18 05:10:31 +08:00
11 lines
488 B
Bash
Executable File
11 lines
488 B
Bash
Executable File
#!/bin/bash
|
|
# --------------------------------------------------------
|
|
# Script for creating ACL file for each LuCI APP
|
|
rm -rf ./*/.git & rm -f ./*/.gitattributes
|
|
rm -rf ./*/.svn & rm -rf ./*/.github & rm -rf ./*/.gitignore
|
|
rm -rf create_acl_for_luci.err & rm -rf create_acl_for_luci.ok
|
|
rm -rf create_acl_for_luci.warn
|
|
cp -f .github/diy/packages/files/usr/lib/lua/luci/view/admin_status/index/links.htm my-default-settings/files/usr/lib/lua/luci/view/admin_status/index/links.htm
|
|
|
|
exit 0
|