1

Ensure we have sort -v

This commit is contained in:
Evan Pratten 2023-10-19 10:45:15 -04:00
parent d5f8224786
commit 2fb13d0fd1

View File

@ -55,6 +55,8 @@ ln -sf $EWCONFIG_ROOT/configs/git/.mailmap ~/.config/git/.mailmap
# Check if GIT is installed > 2.34 # Check if GIT is installed > 2.34
set +x set +x
if type -p git > /dev/null; then if type -p git > /dev/null; then
# If sort has a -V option
if sort --help | grep -q -- -V; then
# If GIT has SSH signing support, enable it # If GIT has SSH signing support, enable it
git_version=$(git --version | cut -d' ' -f3 | cut -d'.' -f1-2) git_version=$(git --version | cut -d' ' -f3 | cut -d'.' -f1-2)
minimum_version=2.34 minimum_version=2.34
@ -62,6 +64,7 @@ if type -p git > /dev/null; then
set -x set -x
ln -sf $EWCONFIG_ROOT/configs/git/config-fragments/enable-signing.gitconfig ~/.config/git/config-fragments/enable-signing.gitconfig ln -sf $EWCONFIG_ROOT/configs/git/config-fragments/enable-signing.gitconfig ~/.config/git/config-fragments/enable-signing.gitconfig
fi fi
fi
fi fi
# Configure SSH # Configure SSH