diff --git a/bootstrap-user.sh b/bootstrap-user.sh index fed69ef..f2fc00e 100755 --- a/bootstrap-user.sh +++ b/bootstrap-user.sh @@ -3,7 +3,7 @@ set -e TMPDIR=$(mktemp -u -p "$HOME" -d dotfiles.XXXXX) && \ - git clone --separate-git-dir="$HOME/.cfg" https://github.com/schtobia/dotfiles.git "$TMPDIR" && \ + git clone --separate-git-dir="$HOME/.cfg" https://gitlab.com/schtobia/dotfiles.git "$TMPDIR" && \ [ -r "$TMPDIR/.gitmodules" ] && cp -vi "$TMPDIR/.gitmodules" "$HOME" [ -d "$HOME/.cfg" ] && \ git --git-dir="$HOME/.cfg/" --work-tree="$HOME" config status.showUntrackedFiles no && \ @@ -12,7 +12,7 @@ TMPDIR=$(mktemp -u -p "$HOME" -d dotfiles.XXXXX) && \ git --git-dir="$HOME/.cfg/" --work-tree="$HOME" submodule update --init --remote --recursive --rebase) rm -rf "$TMPDIR" -pip install --user -r https://github.com/schtobia/bootstrap/raw/master/requirements.txt +pip install --user -r https://gitlab.com/schtobia/bootstrap/raw/master/requirements.txt # vim related npm install -g instant-markdown-d && \