Changed shebang to bash | fixed vundle directory test

This commit is contained in:
saibotk 2018-12-06 19:19:45 +01:00
parent de5460567b
commit c96d22534e
2 changed files with 2 additions and 2 deletions

Binary file not shown.

4
setup.sh Normal file → Executable file
View file

@ -1,4 +1,4 @@
#!/usr/bin/sh
#!/bin/bash
commandExists()
{
@ -18,7 +18,7 @@ ln -s ~/.dotfiles/.vim ~/.vim
ln -s ~/.dotfiles/tmux.conf ~/.tmux.conf
# install vundle
if ! [ -f ~/.vim/bundle/Vundle.vim ]; then
if ! [ -d ~/.vim/bundle/Vundle.vim ]; then
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
else
echo '[INFO] Vundle is already installed.'