summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDieter Plaetinck <dieter@plaetinck.be>2008-12-15 12:06:07 +0100
committerDieter Plaetinck <dieter@plaetinck.be>2008-12-15 12:06:07 +0100
commit07beb06fdab44f5422ef9636da849fff18071893 (patch)
tree3cd039eba892596d9d187ff8d258438b2b13fd49 /src
parent2191b35f9945c25ce6f51b24f1a5d93f2d0bac09 (diff)
sed fixes in VG idetor
Diffstat (limited to 'src')
-rw-r--r--src/core/libs/lib-ui-interactive.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/libs/lib-ui-interactive.sh b/src/core/libs/lib-ui-interactive.sh
index a374b9c..f569f6b 100644
--- a/src/core/libs/lib-ui-interactive.sh
+++ b/src/core/libs/lib-ui-interactive.sh
@@ -465,14 +465,14 @@ interactive_filesystems() {
fi
else
# an existing LV will be edited and it's settings updated
- for lv in `sed '/|/ /g' <<< $fs`
+ for lv in `sed 's/|/ /g' <<< $fs`
do
label=$(cut -d ';' -f 4 <<< $lv)
[ "$label" = "$ANSWER_OPTION" ] && found_lv="$lv"
done
interactive_filesystem $part $part_type $part_label "$found_lv"
fs=
- for lv in `sed '/|/ /g' <<< $fs`
+ for lv in `sed 's/|/ /g' <<< $fs`
do
label=$(cut -d ';' -f 4 <<< $lv)
add=$lv