From ec3f9f663ce2e763299c7bf59938ec3977d82768 Mon Sep 17 00:00:00 2001 From: Augusto Gunsch Date: Mon, 9 Aug 2021 19:36:39 -0300 Subject: [PATCH] Fix missing char --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 557ce1b..d18f1c1 100755 --- a/install.sh +++ b/install.sh @@ -46,7 +46,7 @@ echo "This script can only be run interactively. Make sure you are in a supporte echo -e "$AVAILABLE_PLATFORMS" ### SYSTEM ### -DISTRO=$(cat /etc/os-release | sed -nE '/^ID=(.*)/\1/p') +DISTRO=$(cat /etc/os-release | sed -nE 's/^ID=(.*)/\1/p') INIT_SYS=$(basename $(readlink /bin/init)) quiet ls /sys/firmware/efi/efivars [ $? -eq 0 ] && UEFI=1 || UEFI=0