projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
replace common -I and -L search flags with TARGET_CPPFLAGS and TARGET_LDFLAGS
[openwrt.git]
/
package
/
base-files
/
files
/
bin
/
uci
diff --git
a/package/base-files/files/bin/uci
b/package/base-files/files/bin/uci
index
f8e08f8
..
90098f0
100755
(executable)
--- a/
package/base-files/files/bin/uci
+++ b/
package/base-files/files/bin/uci
@@
-47,7
+47,7
@@
do_set() {
local VALUE
strtok "$1" PACKAGE . CONFIG = VALUE
local VALUE
strtok "$1" PACKAGE . CONFIG = VALUE
- [ $? -ne 3 ] && {
+ [ $? -ne 3
-a $? -ne 2
] && {
uci_usage set
exit 1
}
uci_usage set
exit 1
}
@@
-86,6
+86,7
@@
do_remove() {
do_commit() {
local PACKAGE="$1"
for package in ${PACKAGE:-$(cd /tmp/.uci; ls)}; do
do_commit() {
local PACKAGE="$1"
for package in ${PACKAGE:-$(cd /tmp/.uci; ls)}; do
+ [ lock = "${package##*.}" ] && continue # ignore .lock files
uci_commit "$package"
done
}
uci_commit "$package"
done
}
This page took
0.021605 seconds
and
4
git commands to generate.