[explorer/os] Unquote values from os-release file

This commit is contained in:
Dennis Camera 2019-08-15 16:12:56 +02:00
parent 7981f81dcd
commit fba14496e7
1 changed files with 1 additions and 1 deletions

View File

@ -145,7 +145,7 @@ esac
if [ -f /etc/os-release ]; then
# already lowercase, according to:
# https://www.freedesktop.org/software/systemd/man/os-release.html
awk -F= '/^ID=/ {print $2;}' /etc/os-release
awk -F= '/^ID=/ { if ($2 ~ /^'"'"'(.*)'"'"'$/ || $2 ~ /^"(.*)"$/) { print substr($2, 2, length($2) - 2) } else { print $2 } }' /etc/os-release
exit 0
fi