From db23a2b9e62afc351dc383204b5937b48ab38854 Mon Sep 17 00:00:00 2001 From: Andrew Ruthven Date: Sat, 12 Jan 2019 00:25:08 +1300 Subject: [PATCH] Fix a syntax error --- bin/mythtv-update-motd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/mythtv-update-motd b/bin/mythtv-update-motd index ac2df18..b03bb21 100755 --- a/bin/mythtv-update-motd +++ b/bin/mythtv-update-motd @@ -37,7 +37,7 @@ else if [ -f /etc/os-release ] then - DISTRO=(grep ^ID= /etc/os-release | awk -F= '{ print $2 }') + DISTRO=$(grep ^ID= /etc/os-release | awk -F= '{ print $2 }') else DISTRO='unknown' fi -- 2.30.2