From b517be3168013dcdf8976727776cfe374642ff15 Mon Sep 17 00:00:00 2001 From: Xavier Logerais Date: Fri, 21 Jun 2024 08:49:05 +0000 Subject: [PATCH] feat: update git repo url to point to self-hosted gitea --- README.md | 2 +- config.d/bash.bash | 2 +- config.d/screen.bash | 2 +- config.d/tmux.bash | 2 +- config.d/vim.bash | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 5442331..15197f4 100644 --- a/README.md +++ b/README.md @@ -3,5 +3,5 @@ Just a script to easily setup my shell environment on new devices. ``` -git clone https://github.com/xlogerais/config-bootstrap.git ~/.bootstrap && cd ~/.bootstrap && bash bootstrap.bash +git clone https://gitea.logerais.com/xavier/config-bootstrap.git ~/.bootstrap && cd ~/.bootstrap && bash bootstrap.bash ``` diff --git a/config.d/bash.bash b/config.d/bash.bash index 66b2d68..1f9135a 100644 --- a/config.d/bash.bash +++ b/config.d/bash.bash @@ -4,6 +4,6 @@ if [[ ! -d ~/.bash ]] then - git clone --recursive https://github.com/xlogerais/config-bash.git ~/.bash + git clone --recursive https://gitea.logerais.com/xavier/config-bash.git ~/.bash bash ~/.bash/create-links.bash fi diff --git a/config.d/screen.bash b/config.d/screen.bash index f00e28b..2cf584e 100644 --- a/config.d/screen.bash +++ b/config.d/screen.bash @@ -4,6 +4,6 @@ if [[ ! -d ~/.screen ]] then - git clone --recursive https://github.com/xlogerais/config-screen.git ~/.screen + git clone --recursive https://gitea.logerais.com/xavier/config-screen.git ~/.screen bash ~/.screen/create-links.bash fi diff --git a/config.d/tmux.bash b/config.d/tmux.bash index ab3caef..310640f 100644 --- a/config.d/tmux.bash +++ b/config.d/tmux.bash @@ -4,6 +4,6 @@ if [[ ! -d ~/.tmux ]] then - git clone --recursive https://github.com/xlogerais/config-tmux.git ~/.tmux + git clone --recursive https://gitea.logerais.com/xavier/config-tmux.git ~/.tmux bash ~/.tmux/create-links.bash fi diff --git a/config.d/vim.bash b/config.d/vim.bash index 9de2bd6..00a481a 100644 --- a/config.d/vim.bash +++ b/config.d/vim.bash @@ -4,7 +4,7 @@ if [[ ! -d ~/.vim ]] then - git clone --recursive https://github.com/xlogerais/config-vim.git ~/.vim + git clone --recursive https://gitea.logerais.com/xavier/config-vim.git ~/.vim bash ~/.vim/create-links.bash fi