diff options
Diffstat (limited to 'rescue/restore-image.sh')
-rwxr-xr-x | rescue/restore-image.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rescue/restore-image.sh b/rescue/restore-image.sh index d0f3c1f69..5d807c4ab 100755 --- a/rescue/restore-image.sh +++ b/rescue/restore-image.sh @@ -162,7 +162,7 @@ function write_image() function expand_fs() { filesystem_type=$(dumpe2fs -h /dev/${root}1 2>/dev/null| grep "Filesystem OS type" | awk '{ print $4 }') - if [ $filesystem_type = "Linux" ]; then + if [ "$filesystem_type" = "Linux" ]; then dialog --backtitle "$BACKTITLE" --title "$TITLE" --infobox "Installing... Finishing Install..." 3 40 disk=/dev/$root main_part=/dev/${root}1 |