mirror of
https://github.com/webinstall/webi-installers.git
synced 2026-03-02 09:20:17 +00:00
24 lines
650 B
Bash
24 lines
650 B
Bash
#!/bin/bash
|
|
set -e
|
|
set -u
|
|
|
|
function __init_git() {
|
|
|
|
if [ -z "$(command -v git)" ]; then
|
|
if [[ -n "$(uname -a | grep -i darwin)" ]]; then
|
|
echo >&2 "Error: 'git' not found. You may have to re-install 'git' on Mac after every major update."
|
|
echo >&2 " for example, try: xcode-select --install"
|
|
# sudo xcodebuild -license accept
|
|
else
|
|
echo >&2 "Error: to install 'git' on Linux use the built-in package manager."
|
|
echo >&2 " for example, try: sudo apt install -y git"
|
|
fi
|
|
exit 1
|
|
else
|
|
echo "'git' already installed"
|
|
fi
|
|
|
|
}
|
|
|
|
__init_git
|