diff options
-rwxr-xr-x | tools/draklive | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/draklive b/tools/draklive index dbca1094e..d9e51c7bb 100755 --- a/tools/draklive +++ b/tools/draklive @@ -698,7 +698,7 @@ sub copy_wizard { $live->{workdir} = $live->{prefix}{live_mnt} . $live->{prefix}{media_mnt}; $live->{mnt} = '/tmp/mnt'; my $root = $live->{workdir} . $live->{prefix}{boot}; - my @available_storage = grep { -d "$root/$_" && exists $storage{$_}{detect} } all($root); + my @available_storage = sort(grep { -d "$root/$_" && exists $storage{$_}{detect} } all($root)); my @available_devices; require interactive; require wizards; |