Commit c7bb0c4d authored by Vladimir Bashkirtsev's avatar Vladimir Bashkirtsev

Variables in os-release file should be quoted so os-release may be loaded by...

Variables in os-release file should be quoted so os-release may be loaded by 'source' bash statement
parent c083249d
...@@ -24,10 +24,10 @@ NAME="$(PROJECT_NAME)" ...@@ -24,10 +24,10 @@ NAME="$(PROJECT_NAME)"
ID="$(ID)" ID="$(ID)"
PRETTY_NAME="$(PRETTY_NAME)" PRETTY_NAME="$(PRETTY_NAME)"
ANSI_COLOR=0;33 ANSI_COLOR="0;33"
VERSION=$(VERSION) VERSION="$(VERSION)"
VERSION_ID=$(BUILD_ID) VERSION_ID="$(BUILD_ID)"
# End /etc/os-release # End /etc/os-release
endef endef
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment