From d8822b70cf7b23543c1455b2c802662fe95a5112 Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Sun, 5 Jul 2020 15:04:30 +0300 Subject: [PATCH] Fix minor typo Signed-off-by: XhmikosR --- advanced/Scripts/piholeDebug.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/advanced/Scripts/piholeDebug.sh b/advanced/Scripts/piholeDebug.sh index 1a8efa20..b88ac528 100755 --- a/advanced/Scripts/piholeDebug.sh +++ b/advanced/Scripts/piholeDebug.sh @@ -302,7 +302,7 @@ compare_local_version_to_git_version() { remotes=$(git remote -v) log_write "${INFO} Remotes: ${remotes//$'\n'/'\n '}" - # If the repo is on the master branchs, they are on the stable codebase + # If the repo is on the master branch, they are on the stable codebase if [[ "${remote_branch}" == "master" ]]; then # so the color of the text is green log_write "${INFO} Branch: ${COL_GREEN}${remote_branch}${COL_NC}" @@ -315,7 +315,7 @@ compare_local_version_to_git_version() { log_write "${INFO} Commit: ${remote_commit}" # if `local_status` is non-null, then the repo is not clean, display details here if [[ ${local_status} ]]; then - #Replace new lines in the status with 12 spaces to make the output cleaner + # Replace new lines in the status with 12 spaces to make the output cleaner log_write "${INFO} Status: ${local_status//$'\n'/'\n '}" local local_diff local_diff=$(git diff)