From 0f5b3d69d7044638ad15f7c007b916ac2ecec37b Mon Sep 17 00:00:00 2001 From: fiftydinar <65243233+fiftydinar@users.noreply.github.com> Date: Tue, 4 Jun 2024 16:30:28 +0200 Subject: [PATCH] chore(brew): Remove redundant dots in log --- modules/brew/brew.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/brew/brew.sh b/modules/brew/brew.sh index ff99a02..3b1831a 100644 --- a/modules/brew/brew.sh +++ b/modules/brew/brew.sh @@ -12,10 +12,10 @@ fi # (add VanillaOS package manager in the future when it gets supported) if ! command -v gcc &> /dev/null; then if command -v rpm-ostree &> /dev/null; then - echo "Installing \"gcc\" package, which is necessary for Brew to function." + echo "Installing \"gcc\" package, which is necessary for Brew to function" rpm-ostree install gcc else - echo "ERROR: \"gcc\" package could not be found." + echo "ERROR: \"gcc\" package could not be found" echo " Brew depends on \"gcc\" in order to function" echo " Please include \"gcc\" in the list of packages to install with the system package manager" exit 1