From 5c852109003cd45e224a124f913f30bd43e43127 Mon Sep 17 00:00:00 2001 From: bjorn3 <17426603+bjorn3@users.noreply.github.com> Date: Thu, 25 Jan 2024 17:56:35 +0100 Subject: [PATCH] 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. --- config/base.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/base.toml b/config/base.toml index b19f70d..a681130 100644 --- a/config/base.toml +++ b/config/base.toml @@ -40,8 +40,8 @@ redox [[files]] path = "/usr/lib/os-release" data = """ -PRETTY_NAME = "Redox OS 0.8.0" -NAME = "Redox OS" +PRETTY_NAME="Redox OS 0.8.0" +NAME="Redox OS" VERSION_ID="0.8.0" VERSION="0.8.0" ID="redox-os"