summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
Diffstat (limited to 'utils')
-rwxr-xr-xutils/lib.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/lib.sh b/utils/lib.sh
index 26a26d750..e13acca3e 100755
--- a/utils/lib.sh
+++ b/utils/lib.sh
@@ -4,9 +4,9 @@
# shellcheck disable=SC2059,SC1117
# ubuntu, debian, arch, fedora ...
-DIST_ID=$(source /etc/os-release; echo $ID);
+DIST_ID=$(source /etc/os-release; echo "$ID");
# shellcheck disable=SC2034
-DIST_VERS=$(source /etc/os-release; echo $VERSION_ID);
+DIST_VERS=$(source /etc/os-release; echo "$VERSION_ID");
ADMIN_NAME="${ADMIN_NAME:-$(git config user.name)}"
ADMIN_NAME="${ADMIN_NAME:-$USER}"