fix a bug in regexp

pull/5/head v1.8
Tomas M 2013-01-04 08:17:07 -06:00
parent 6b698a080d
commit 54e54e7b1a
1 changed files with 1 additions and 1 deletions

View File

@ -384,7 +384,7 @@ find_data_try()
if [ "$(find "$1/$FROM" -maxdepth 1 -name "*.$BEXT" 2>/dev/null)" != "" ]; then if [ "$(find "$1/$FROM" -maxdepth 1 -name "*.$BEXT" 2>/dev/null)" != "" ]; then
# we found at least one bundle/module here # we found at least one bundle/module here
mount -o remount,rw "$DEVICE" "$1" 2>/dev/null mount -o remount,rw "$DEVICE" "$1" 2>/dev/null
echo "$1/$FROM" | tr -s "/" | sed -r "s:/[^/]+/../:/:g" echo "$1/$FROM" | tr -s "/" | sed -r "s:/[^/]+/[.][.]/:/:g"
return return
fi fi