move scripts from zsh/bin to scripts

This commit is contained in:
Dmytro Meleshko 2019-08-30 13:13:04 +03:00
parent 74e5fd2e54
commit e5877a77fd
7 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ is_android() {
}
command_exists() {
command -v "$1" >/dev/null 2>&1
command -v "$1" &>/dev/null
}
source_if_exists() {

View File

@ -47,7 +47,7 @@ path=("$GOPATH/bin" "${path[@]}")
path=(~/.local/bin "${path[@]}")
# add my binaries and completions
path=("$ZSH_DOTFILES/bin" "${path[@]}")
path=("$ZSH_DOTFILES/../scripts" "${path[@]}")
fpath=("$ZSH_DOTFILES/completions" "${fpath[@]}")
# check for Rust installed via rustup