Fix the format of /etc/os-release

The os-release crate can't handle parsing the current format, and the
python example on the /etc/os-release man page suggests that it is
invalid to have a space before the equal sign.
This commit is contained in:
bjorn3 2024-01-25 17:56:35 +01:00
parent 000f0c4573
commit 5c85210900

View file

@ -40,8 +40,8 @@ redox
[[files]] [[files]]
path = "/usr/lib/os-release" path = "/usr/lib/os-release"
data = """ data = """
PRETTY_NAME = "Redox OS 0.8.0" PRETTY_NAME="Redox OS 0.8.0"
NAME = "Redox OS" NAME="Redox OS"
VERSION_ID="0.8.0" VERSION_ID="0.8.0"
VERSION="0.8.0" VERSION="0.8.0"
ID="redox-os" ID="redox-os"