Fix missing char

This commit is contained in:
Augusto Gunsch 2021-08-09 19:36:39 -03:00
parent 1638ef4111
commit ec3f9f663c
No known key found for this signature in database
GPG Key ID: F7EEFE29825C72DC
1 changed files with 1 additions and 1 deletions

View File

@ -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