bash-it/plugins/available/basher.plugin.bash

17 lines
354 B
Bash

# shellcheck shell=bash
about-plugin 'initializes basher, the shell package manager'
# https://github.com/basherpm/basher
if ! _command_exists basher; then
if [[ -x "$HOME/.basher/bin/basher" ]]; then
pathmunge "$HOME/.basher/bin"
else
_log_warning 'basher not found'
return 0
fi
fi
# shellcheck disable=SC1090
source < <(basher init - bash)