mirror of
https://github.com/rwxrob/dot
synced 2024-11-18 15:25:52 +00:00
7 lines
128 B
Bash
Executable File
7 lines
128 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
_have() { type "$1" &>/dev/null; }
|
|
|
|
! _have mods && echo "requires charmbracelet/mods" && exit 1
|
|
mods "$*"
|