Merge pull request #2057 from mspncp/git-simplify-worktree-check
Simplify check for git working tree
This commit is contained in:
commit
22272105c4
|
@ -127,7 +127,7 @@ declare -r SWCONTACT="dirk aet testssl dot sh"
|
|||
[[ "$VERSION" =~ dev|rc|beta ]] && \
|
||||
SWURL="https://testssl.sh/dev/" ||
|
||||
SWURL="https://testssl.sh/"
|
||||
if git log &>/dev/null; then
|
||||
if git rev-parse --is-inside-work-tree &>/dev/null; then
|
||||
declare -r GIT_REL="$(git log --format='%h %ci' -1 2>/dev/null | awk '{ print $1" "$2" "$3 }')"
|
||||
declare -r GIT_REL_SHORT="$(git log --format='%h %ci' -1 2>/dev/null | awk '{ print $1 }')"
|
||||
declare -r REL_DATE="$(git log --format='%h %ci' -1 2>/dev/null | awk '{ print $2 }')"
|
||||
|
|
Loading…
Reference in New Issue