From 0e4fd524507e1696796e4d1f595688a0f61c9fee Mon Sep 17 00:00:00 2001 From: Jacob Kiers Date: Tue, 23 Dec 2014 11:24:55 +0100 Subject: [PATCH] Fix the clone URL for installation. Signed-off-by: Jacob Kiers --- install/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/install.sh b/install/install.sh index 6addf21..3f89c10 100755 --- a/install/install.sh +++ b/install/install.sh @@ -17,7 +17,7 @@ fi # Clone dotfiles and make symlinks echo "Installing dotfiles..." -cd ~ && git clone git@bitbucket.org:jacobkiers/dotfiles.git && cd dotfiles && ./sync.py +cd ~ && git clone https://bitbucket.org/jacobkiers/dotfiles.git && cd dotfiles && ./sync.py source ~/.bashrc echo "Dotfiles installed successfully."