Fix small typo in sed call

This commit is contained in:
Phil Clifford 2024-04-19 20:16:51 +01:00 committed by Martin Wimpress
parent 62064c0c13
commit 8a198b0031
1 changed files with 1 additions and 1 deletions

View File

@ -251,7 +251,7 @@ function vm_boot() {
LSB_DESCRIPTION=$(grep PRETTY_NAME /etc/os-release | cut -d'"' -f2)
fi
# Strip quotes from LSB_DESCRIPTION
LSB_DESCRIPTION="$(echo "${LSB_DESCRIPTION}" | sed 's/"//')"
LSB_DESCRIPTION="$(echo "${LSB_DESCRIPTION}" | sed 's/"//g')"
echo "Quickemu ${VERSION} using ${QEMU} v${QEMU_VER_LONG}"
echo " - Host: ${LSB_DESCRIPTION} running ${KERNEL_NAME} ${KERNEL_VER} ${KERNEL_NODE}"