changed URLs to git.schmidl.dev
This commit is contained in:
parent
41e6ba9e71
commit
1513f469ba
3 changed files with 5 additions and 11 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue