Skip to content

Commit 89d35e6

Browse files
committed
Update install link after renaming to python-vimrc
1 parent 969e8b4 commit 89d35e6

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

CONTRIBUTORS.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
===================
33

44
+ Roman Mogilatov
5-
+ Sergii Buinytskyi
5+
+ Sergii [boonya] Buinytskyi

setup.sh

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ wrapper() {
66
BLUE="\033[0;36m"
77
NORMAL="\033[0m"
88

9+
REPO_HTTPS="https://github.com/ets-labs/python-vimrc.git"
10+
VUNDLE_HTTPS="https://github.com/VundleVim/Vundle.vim.git"
11+
912
echo "${BLUE}"
1013
cat << "HELLO_TEXT"
1114
iiii
@@ -44,14 +47,14 @@ echo "${NORMAL}"
4447
# precedence over umasks except for filesystems mounted with option "noacl".
4548
umask g-w,o-w
4649

47-
printf "${BLUE}%s${NORMAL}\n" "Cloning vimrc..."
50+
printf "${BLUE}%s${NORMAL}\n" "Cloning vimrc from ${REPO_HTTPS}"
4851

4952
hash git >/dev/null 2>&1 || {
5053
printf "${RED}%s${NORMAL}\n" "Error: git is not installed."
5154
exit 1
5255
}
5356

54-
env git clone --depth=1 https://github.com/ets-labs/vimrc.git $VIM || {
57+
env git clone --depth=1 $REPO_HTTPS $VIM || {
5558
printf "${RED}%s${NORMAL}\n" "Error: git clone of vimrc repo failed."
5659
exit 1
5760
}
@@ -68,11 +71,11 @@ echo "${NORMAL}"
6871

6972
if [ ! -d "$VIM/bundle/Vundle.vim" ]; then
7073
printf "${BLUE}%s${NORMAL}\n" "Installing Vundle..."
71-
env git clone --depth=1 https://github.com/VundleVim/Vundle.vim.git "$VIM/bundle/Vundle.vim"
74+
env git clone --depth=1 $VUNDLE_HTTPS "$VIM/bundle/Vundle.vim"
7275
fi
73-
76+
7477
if [ ! -f $VIM/colors/wombat256mod.vim ]; then
75-
if [ ! -d $VIM/colors/ ]; then
78+
if [ ! -d $VIM/colors/ ]; then
7679
mkdir -p $VIM/colors
7780
fi
7881
wget 'http://www.vim.org/scripts/download_script.php?src_id=13400' -O $VIM/colors/wombat256mod.vim

0 commit comments

Comments
 (0)