Fixed makefile
This commit is contained in:
parent
e7dadd014f
commit
223d9f28a5
8
Makefile
8
Makefile
@ -36,8 +36,8 @@ pre-reqs: ## Install all required binaries.
|
||||
which btm > /dev/null || cargo install bottom; \
|
||||
which procs > /dev/null || brew install procs; \
|
||||
which dog > /dev/null || brew install dog; \
|
||||
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions; \
|
||||
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting;
|
||||
git clone https://github.com/zsh-users/zsh-autosuggestions $${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions; \
|
||||
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git $${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting;
|
||||
|
||||
.PHONY: upgrade
|
||||
upgrade: ## Upgrade all required binaries.
|
||||
@ -70,8 +70,8 @@ upgrade: ## Upgrade all required binaries.
|
||||
which btm > /dev/null && cargo install bottom; \
|
||||
which procs > /dev/null && brew upgrade procs; \
|
||||
which dog > /dev/null && brew upgrade dog; \
|
||||
cd ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions && git pull && cd -; \
|
||||
cd ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting && git pull && cd -;
|
||||
cd $${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions && git pull && cd -; \
|
||||
cd $${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting && git pull && cd -;
|
||||
|
||||
.PHONY: dotfiles
|
||||
dotfiles: ## Installs the dotfiles.
|
||||
|
Loading…
Reference in New Issue
Block a user