From 83738f7e6da3f2d6b5b6bfdf58816b7b2feee5c3 Mon Sep 17 00:00:00 2001 From: Tim Abbott Date: Wed, 23 Jun 2021 08:42:46 -0700 Subject: [PATCH] install: Use a period at end of root error message. --- scripts/setup/install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/setup/install b/scripts/setup/install index 96395347d3..f91f1e7870 100755 --- a/scripts/setup/install +++ b/scripts/setup/install @@ -6,7 +6,7 @@ set -e if [ "$EUID" -ne 0 ]; then - echo "Error: The installation script must be run as root" >&2 + echo "Error: The installation script must be run as root." >&2 exit 1 fi umask 022