Fix broken script
This commit is contained in:
parent
17ef3882c1
commit
5efd04dc7f
1 changed files with 2 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
|||
pushd "${BASH_SOURCE%/*}" > /dev/null;
|
||||
|
||||
source "../../Scripts/choose-disk.sh";
|
||||
chooseDisk disk "Which disk do you whish to format for installing Arch?";
|
||||
chooseDisk archDisk "Which disk do you whish to format for installing Arch?";
|
||||
memory="$(cat /proc/meminfo | awk -F " " '/^MemTotal/ { print $2 }')";
|
||||
memory="$(echo "$memory" | awk '{ print int(($1 / 1024 / 1024) + 0.5)}')";
|
||||
swapSize="$(echo "$memory" | awk '{ print int(($1 / 4) + 0.5)}')";
|
||||
|
@ -34,6 +34,6 @@ swapSize="$(echo "$memory" | awk '{ print int(($1 / 4) + 0.5)}')";
|
|||
echo "23";
|
||||
|
||||
echo "w";
|
||||
} | fdisk "$disk";
|
||||
} | fdisk "$archDisk";
|
||||
|
||||
popd > /dev/null;
|
||||
|
|
Loading…
Reference in a new issue