diff options
author | Juan RP <xtraeme@gmail.com> | 2014-10-25 10:07:50 +0200 |
---|---|---|
committer | Juan RP <xtraeme@gmail.com> | 2014-10-25 10:07:50 +0200 |
commit | 7fbf8a189dfae9d101b77a513c4cc4dd1ab86073 (patch) | |
tree | f03216342b298bc5ed753242d4b1448c7f1c3f0d /installer.sh.in | |
parent | 70fc86365c6125d6bc5592e8eb38e58ffd10785e (diff) | |
download | hrmpf-7fbf8a189dfae9d101b77a513c4cc4dd1ab86073.tar.gz hrmpf-7fbf8a189dfae9d101b77a513c4cc4dd1ab86073.tar.xz hrmpf-7fbf8a189dfae9d101b77a513c4cc4dd1ab86073.zip |
installer: run partx -u just to be sure to update its partition table.
Diffstat (limited to 'installer.sh.in')
-rw-r--r-- | installer.sh.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/installer.sh.in b/installer.sh.in index ad7fad8..6f5a00a 100644 --- a/installer.sh.in +++ b/installer.sh.in @@ -258,7 +258,7 @@ ${BOLD}WARNING: /usr is not supported as a separate partition.${RESET}\n ${RESET}\n" 18 80 if [ $? -eq 0 ]; then while true; do - clear; cfdisk $device; PARTITIONS_DONE=1; partx -a $device + clear; cfdisk $device; PARTITIONS_DONE=1; partx -a $device; partx -u $device break done else |