projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
fix missing update for include() api change (#815)
[openwrt.git]
/
package
/
base-files
/
default
/
etc
/
functions.sh
diff --git
a/package/base-files/default/etc/functions.sh
b/package/base-files/default/etc/functions.sh
index
27b0a6d
..
ce22ed1
100755
(executable)
--- a/
package/base-files/default/etc/functions.sh
+++ b/
package/base-files/default/etc/functions.sh
@@
-93,7
+93,7
@@
load_modules() {
}
include() {
- for file in $(ls
/lib/
$1/*.sh 2>/dev/null); do
+ for file in $(ls $1/*.sh 2>/dev/null); do
. $file
done
}
This page took
0.021179 seconds
and
4
git commands to generate.