mirror of
https://github.com/suikan4github/kaiten-yaki.git
synced 2025-12-20 10:31:17 -03:00
Add double quote for ease-of-read
This commit is contained in:
parent
c504de3d9b
commit
91db393dd2
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue