aboutsummaryrefslogtreecommitdiffstats
path: root/transfugdrake
diff options
context:
space:
mode:
authorChristian Belisle <cbelisle@mandriva.com>2002-01-25 15:33:28 +0000
committerChristian Belisle <cbelisle@mandriva.com>2002-01-25 15:33:28 +0000
commitcbf5793f8ce2f9ac5bc0e558095b54a996e39217 (patch)
tree14244297b01205412f3e17460cbaaad02e585cf6 /transfugdrake
parentb281b92d83263dc19dcc0351cc6ef1476580124b (diff)
downloadtransfugdrake-cbf5793f8ce2f9ac5bc0e558095b54a996e39217.tar
transfugdrake-cbf5793f8ce2f9ac5bc0e558095b54a996e39217.tar.gz
transfugdrake-cbf5793f8ce2f9ac5bc0e558095b54a996e39217.tar.bz2
transfugdrake-cbf5793f8ce2f9ac5bc0e558095b54a996e39217.tar.xz
transfugdrake-cbf5793f8ce2f9ac5bc0e558095b54a996e39217.zip
add a warning if no user found
Diffstat (limited to 'transfugdrake')
-rwxr-xr-xtransfugdrake19
1 files changed, 13 insertions, 6 deletions
diff --git a/transfugdrake b/transfugdrake
index 24e2ca3..bc32f73 100755
--- a/transfugdrake
+++ b/transfugdrake
@@ -146,13 +146,20 @@ elsif($document_location eq $win_mountpoint.'/'.$documents_folders[1]) {
$notvalid = 0;
}
}
-
-$::Wizard_no_previous = 0;
-my $chosen_user = $in->ask_from_list(_("Transfugdrake"),
-_("You have the following users in Windows. Which one do you want to use for migration?"),
-[ @users ], $users[0]) or goto step_0;
-$laststep = "step_2";
+if($users[0] eq "") {
+ $in->ask_warn(_("No user found!"),
+ _("Can't find any user on your Windows partition. Will copy all documents from Windows"));
+}
+else {
+ $::Wizard_no_previous = 0;
+ my $chosen_user = $in->ask_from_list(_("Transfugdrake"),
+ _("You have the following users in Windows. Which one do you want to use for migration?"),
+ [ @users ], $users[0]) or goto step_0;
+}
+
+$laststep = "step_2";
+
#- **********************************
#- * 3rd step: Task Chooser
step_3: