From 8186f16b0f98768aedf1f6458a0efed41ee76be8 Mon Sep 17 00:00:00 2001 From: Bruce Dubbs Date: Tue, 6 Apr 2021 17:28:27 -0500 Subject: Quiet git status check. Make sed more readable. --- git-version.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/git-version.sh b/git-version.sh index 898d5b96f..0512a26aa 100755 --- a/git-version.sh +++ b/git-version.sh @@ -1,6 +1,6 @@ #!/bin/sh -if ! git status; then +if ! git status > /dev/null; then # Either it's not a git repository, or git is unavaliable. # Just workaround. echo "" > version.ent @@ -19,7 +19,7 @@ short_date=$(date --date "$commit_date" "+%Y%m%d") year=$(date --date "$commit_date" "+%Y") month=$(date --date "$commit_date" "+%B") month_digit=$(date --date "$commit_date" "+%m") -day=$(date --date "$commit_date" "+%d" | sed 's@^0@@') +day=$(date --date "$commit_date" "+%d" | sed 's/^0//') case $day in "1" | "21" | "31" ) suffix="st";; -- cgit v1.2.3-54-g00ecf