From b44c1636d29682bd0ddec4b2f6d1c76a51cb4c83 Mon Sep 17 00:00:00 2001 From: Tobias Schmidl Date: Tue, 23 Feb 2021 08:22:10 +0000 Subject: [PATCH] Update bootstrap-user.sh --- bootstrap-user.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 && \