Aqui está algo que funcionará em zsh
ou bash
para alcançar o que você procura.
Se você fizer um gem clean
para remover uma versão antiga de tmuxinator
, ele consertará as coisas quando o código for executado na próxima vez (ou seja, na próxima inicialização do shell, se no seu .zshrc
)
# Allow shell-specific code
function sh_is_zsh { [[ -n $ZSH_VERSION ]]; }
function sh_is_bash { [[ -n $BASH_VERSION ]]; }
# Update "tmuxinator.{z,ba}sh" if needed
tmuxinator_source="$XDG_CONFIG_HOME/tmuxinator/tmuxinator.$(sh_is_zsh && echo zsh || echo bash)"
# If not a regular file or symlink to one
if [[ ! -f $tmuxinator_source ]]; then
# If doesn't exist or is a symlink to nowhere
if [[ ! -e $tmuxinator_source ]] || [[ -L $tmuxinator_source ]] && [[ ! -e $tmuxinator_source ]]; then
echo "Creating ${tmuxinator_source##*/} symlink:"
tmp=$(gem which tmuxinator) # tmuxinator executable
tmp=$(readlink -f "${tmp%/*}/../completion") # completion scripts dir
ln -fsv "$tmp/${tmuxinator_source##*/}" "$tmuxinator_source"
unset tmp
else
echo "Not creating symlink at at existing:"
ls -lF "$tmuxinator_source"
fi
fi
source "$tmuxinator_source"
unset $tmuxinator_source
Observe que este é shellcheck
clean para pontos extras de brownie.