diff options
author | Andreas Loibl <andreas@andreas-loibl.de> | 2011-09-28 20:46:51 +0200 |
---|---|---|
committer | Andreas Loibl <andreas@andreas-loibl.de> | 2011-09-28 20:46:51 +0200 |
commit | d9e67b2859724db5920a3669afac249542851710 (patch) | |
tree | fdea2f907d92d1cd040aa474ac71ef62fe74fae3 /backend | |
parent | efe0c18ab6c86e4ac9c2316f4dee4764e820e0e7 (diff) | |
download | acritoxinstaller-d9e67b2859724db5920a3669afac249542851710.zip acritoxinstaller-d9e67b2859724db5920a3669afac249542851710.tar.gz |
fixed order of hdmap in prepare_partitions
Diffstat (limited to 'backend')
-rw-r--r-- | backend/modules/hdmap | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/modules/hdmap b/backend/modules/hdmap index 0558a97..ea98dd1 100644 --- a/backend/modules/hdmap +++ b/backend/modules/hdmap @@ -326,7 +326,7 @@ function prepare_partitions_for_install() # update progress progress=$[progress+1]; emit_progress $[100*progress/progress_steps] - done <<<"$cfg_hdmap" + done < <(sort -t: -k2,2 <<<"$cfg_hdmap") } function fill_hdmap() |