You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We should have some helper functions that can check for system-level dependencies and be called in the __init_xxxx of any installer, and print out a helpful message if that tool isn't there.
We've partially done with this git, but it should be more universal - in almost every vim-* installer, for example.
_webi/template.sh (? or maybe bootstrap? I don't recall)
functionwebi_check_git() {
# do the check / print the message
}
vim-prettier
function__init_vim_prettier() {
webi_check_git
# do stuff...
}
The text was updated successfully, but these errors were encountered:
do you want bootstrap.sh to contain all the individual checks like function for checking git, vim, rg, or function should accept just the command name and check whether it is available or not.
We should have some helper functions that can check for system-level dependencies and be called in the
__init_xxxx
of any installer, and print out a helpful message if that tool isn't there.We've partially done with this
git
, but it should be more universal - in almost everyvim-*
installer, for example._webi/template.sh
(? or maybe bootstrap? I don't recall)vim-prettier
The text was updated successfully, but these errors were encountered: