diff --git a/script/lib.sh b/script/lib.sh index 06ca086..d68bf77 100644 --- a/script/lib.sh +++ b/script/lib.sh @@ -72,7 +72,7 @@ function confirmation(){ # For sure ask to erase. if [ "${ERASEALL}" -ne 0 ] ; then - echo "Are you sure you want to erase entire ${DEV}? [Y/N]" + echo "Are you sure you want to erase entire \"${DEV}\"? [Y/N]" read -r YESNO if [ "${YESNO}" != "Y" ] && [ "${YESNO}" != "y" ] ; then cat <<-HEREDOC @@ -86,7 +86,7 @@ function confirmation(){ # For sure ask to overwrite. if [ "${OVERWRITEINSTALL}" -ne 0 ] ; then - echo "Are you sure you want to overwrite ${LVROOTNAME} in ${VGNAME}? [Y/N]" + echo "Are you sure you want to overwrite \"${LVROOTNAME}\" in \"${VGNAME}\"? [Y/N]" read -r YESNO if [ "${YESNO}" != "Y" ] && [ "${YESNO}" != "y" ] ; then cat <<-HEREDOC