Skip to content
This repository has been archived by the owner on Apr 16, 2024. It is now read-only.

Commit

Permalink
install: fix conditional in packer installation
Browse files Browse the repository at this point in the history
  • Loading branch information
NTBBloodbath committed May 20, 2021
1 parent 255624c commit d1feeeb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ install_nvim_nightly() {
}

install_packer() {
if [[ -d "$HOME/.local/share/nvim/site/pack/packer/start/packer.nvim" ]]; then
if [[ ! -d "$HOME/.local/share/nvim/site/pack/packer/start/packer.nvim" ]]; then
log_info "Installing packer plugin manager ..."
# NOTE: stop installing that branch when merged into the main branch
git clone -q -b fix/premature-display-opening https://github.com/wbthomason/packer.nvim \
Expand Down

0 comments on commit d1feeeb

Please sign in to comment.