From 163e8568a37b2c08b6b329d3833c6c85efbbc225 Mon Sep 17 00:00:00 2001 From: Salt Date: Wed, 17 Jan 2018 12:16:19 -0600 Subject: [PATCH] Bootstrap: Fix requiring valid SSH keys to clone repository It seemed like a good idea at the time, but it was completely untested up until recently --- .local/bin/bootstrap/replicate.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.local/bin/bootstrap/replicate.sh b/.local/bin/bootstrap/replicate.sh index dee47100..c86211c5 100755 --- a/.local/bin/bootstrap/replicate.sh +++ b/.local/bin/bootstrap/replicate.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash tempfolder="/tmp/dots$(uuidgen)" -git clone --recursive --separate-git-dir="$HOME/.dotfiles" git@github.com:rehashedsalt/home.git $tempfolder +git clone --recursive --separate-git-dir="$HOME/.dotfiles" https://github.com/rehashedsalt/home.git $tempfolder rsync -rvl --exclude ".git" $tempfolder/ $HOME/ rm -r $tempfolder git submodule update --init --recursive --git-dir="$HOME/.dotfiles" --work-tree="$HOME" $HOME/