diff options
author | Galen Guyer <galen@galenguyer.com> | 2022-11-01 20:01:56 -0400 |
---|---|---|
committer | Galen Guyer <galen@galenguyer.com> | 2022-11-01 20:01:56 -0400 |
commit | 0752767c04a7816f5818987568d6ac5aaa810fc0 (patch) | |
tree | 8b354724292a28d5db9148c7e3a6d3981bc257a3 /modules/40-git/install.sh | |
parent | 7869b408e62a1c6e022fac4899fc541abe530c1f (diff) |
I've been writing git aliases for 5 hours. Send help
Diffstat (limited to 'modules/40-git/install.sh')
-rw-r--r-- | modules/40-git/install.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/40-git/install.sh b/modules/40-git/install.sh index 61374e9..1e062bc 100644 --- a/modules/40-git/install.sh +++ b/modules/40-git/install.sh @@ -8,6 +8,9 @@ function preinstall() { if ! [[ -x "$(command -v git)" ]]; then PACKAGES+=("git") fi + if ! [[ -x "$(command -v fzf)" ]]; then + PACKAGES+=("fzf") + fi } function install() { |