diff options
author | Dieter Plaetinck <dieter@plaetinck.be> | 2008-11-03 14:35:25 +0100 |
---|---|---|
committer | Dieter Plaetinck <dieter@plaetinck.be> | 2008-11-03 14:35:25 +0100 |
commit | dee1f98a0a7b2b5d77a8a0fd9235b450e6374354 (patch) | |
tree | 13b244a9daa98508a6b9253ff3dfaf602c1dd289 /src/core | |
parent | acffc52971cd677b4306698d450a818b2d07d8a1 (diff) |
syntax bugfixes
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/procedures/interactive | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/core/procedures/interactive b/src/core/procedures/interactive index 0580428..21ba2a3 100644 --- a/src/core/procedures/interactive +++ b/src/core/procedures/interactive @@ -179,15 +179,17 @@ worker_prepare_disks() if [ "$S_MKFSAUTO" = "1" ]; then notify "You have already prepared your filesystems with Auto-prepare" else - interactive_partition && S_PART=1 ;; + interactive_partition && S_PART=1 fi + ;; "3") PARTFINISH="" if [ "$S_MKFSAUTO" = "1" ]; then notify "You have already prepared your filesystems with Auto-prepare" else - interactive_mountpoints && S_MKFS=1 ;; + interactive_mountpoints && S_MKFS=1 fi + ;; *) DONE=1 ;; esac |