From 1513f469ba155565c6aa95e1c78b1b4aa1d0b435 Mon Sep 17 00:00:00 2001 From: Tobias Schmidl Date: Tue, 25 Jul 2023 08:43:24 +0200 Subject: [PATCH] changed URLs to git.schmidl.dev --- bootstrap-root.sh | 2 +- bootstrap-user.sh | 10 ++-------- bootstrap.sh | 4 ++-- 3 files changed, 5 insertions(+), 11 deletions(-) diff --git a/bootstrap-root.sh b/bootstrap-root.sh index 3a9f86e..cc69537 100755 --- a/bootstrap-root.sh +++ b/bootstrap-root.sh @@ -47,7 +47,7 @@ apt-get update \ cargo install --root /usr/local --git https://github.com/mookid/diffr # shellcheck disable=SC2086 -curl $CURLOPT -o /usr/local/sbin/cleanup.sh https://gist.github.com/schtobia/f02deeaf2fd20b23ae9fcf0f451cc858/raw/cleanup.sh \ +curl $CURLOPT -o /usr/local/sbin/cleanup.sh https://git.schmidl.dev/schtobia/bootstrap/raw/branch/master/cleanup/cleanup.sh \ && chmod u+x /usr/local/sbin/cleanup.sh # diff-highlight from git is necessary for tig diff --git a/bootstrap-user.sh b/bootstrap-user.sh index e7d699c..9d9c546 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://gitlab.com/schtobia/dotfiles.git "$TMPDIR" && \ + git clone --separate-git-dir="$HOME/.cfg" https://git.schmidl.dev/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,13 +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://gitlab.com/schtobia/bootstrap/raw/master/requirements.txt && -#for package in \ -# kas \ -# pylint; -#do -# pipx install $package -#done +pip install --user -r https://git.schmidl.dev/schtobia/bootstrap/raw/branch/master/requirements.txt && # vim related nvim +PluginInstall +UpdateRemotePlugins +qall diff --git a/bootstrap.sh b/bootstrap.sh index 9250ded..0e15d3f 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -5,10 +5,10 @@ CURLOPT=${CURLOPT:-"--location --remote-time --remote-name --show-error --silent # root part # shellcheck disable=SC2086 -curl $CURLOPT https://gitlab.com/schtobia/bootstrap/raw/master/bootstrap-root.sh \ +curl $CURLOPT https://git.schmidl.dev/schtobia/bootstrap/raw/branch/master/bootstrap-root.sh \ && chmod +x bootstrap-root.sh # userspace part # shellcheck disable=SC2086 -curl $CURLOPT https://gitlab.com/schtobia/bootstrap/raw/master/bootstrap-user.sh \ +curl $CURLOPT https://git.schmidl.dev/schtobia/bootstrap/raw/branch/master/bootstrap-user.sh \ && chmod +x bootstrap-user.sh