From 53dcd53335aee11d2f0a2ae07c5789010ed4c89b Mon Sep 17 00:00:00 2001 From: TommyTran732 <57488583+tommytran732@users.noreply.github.com> Date: Sun, 25 Jul 2021 07:49:16 +0000 Subject: [PATCH] Update install.sh --- install.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/install.sh b/install.sh index ef91f43..3462050 100644 --- a/install.sh +++ b/install.sh @@ -341,7 +341,7 @@ echo "" >> /mnt/etc/bash.bashrc echo "umask 077" >> /mnt/etc/bash.bashrc # Setting up ZRAM -MEM = $(awk '/^Mem/ {print $2}' <(free -m)) +MEM=$(awk '/^Mem/ {print $2}' <(free -m)) if [ "${MEM}" -ge "8192" ]; then ZRAMSIZE = 8192 else @@ -354,5 +354,6 @@ echo 'KERNEL=="zram0", ATTR{disksize}="${ZRAMSIZE}M" RUN="/usr/bin/mkswap /dev/z echo '# ZRAM' >> /mnt/etc/fstab echo '/dev/zram0 none swap defaults 0 0' >> /mnt/etc/fstab +# Finishing up echo "Done, you may now wish to reboot (further changes can be done by chrooting into /mnt)." exit