diff options
Diffstat (limited to 'update-conf')
-rw-r--r-- | update-conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/update-conf b/update-conf index 1e88e72..6a8ab16 100644 --- a/update-conf +++ b/update-conf @@ -41,7 +41,7 @@ while getopts "alih" opt ; do done shift `expr $OPTIND - 1` -find "$ROOT/etc" -name '*.apk-new' | while read apknew ; do +for apknew in $(find "$ROOT/etc" -name '*.apk-new') ; do p="${apknew%.apk-new}" f="${p#${ROOT}/}" unset choice |