summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbjorn3 <17426603+bjorn3@users.noreply.github.com>2024-01-25 17:56:35 +0100
committerbjorn3 <17426603+bjorn3@users.noreply.github.com>2024-01-25 17:57:03 +0100
commit5c852109003cd45e224a124f913f30bd43e43127 (patch)
treedcdc696d0738e84287ae726a1b113e6e9eba260d
parent000f0c457331c860522ad9621127102f01a3b26f (diff)
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.
-rw-r--r--config/base.toml4
1 files 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"