chore: organisation
This commit is contained in:
29
script/install.d/21-git.sh
Normal file
29
script/install.d/21-git.sh
Normal file
@@ -0,0 +1,29 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# -----------------------------------------------------------------------------
|
||||
# Description:
|
||||
# Configure git.
|
||||
#
|
||||
|
||||
# Skip in Codespaces (pre-installed in universal image)
|
||||
[[ "$DOTS_ENV" == "codespaces" ]] && { log_pass "Skipping in Codespaces"; git --version; return 0; }
|
||||
|
||||
if ! command -v git &> /dev/null; then
|
||||
case "$DOTS_PKG" in
|
||||
apt)
|
||||
sudo apt-get install -qq git
|
||||
;;
|
||||
pacman)
|
||||
sudo pacman -S --noconfirm git
|
||||
;;
|
||||
brew)
|
||||
brew install git
|
||||
;;
|
||||
*)
|
||||
log_warn "Skipping git install: no supported package manager found"
|
||||
return 0
|
||||
;;
|
||||
esac
|
||||
fi
|
||||
|
||||
git --version
|
||||
Reference in New Issue
Block a user