From 0ba21d023854a47395670ece5f37fbe7556c8b1c Mon Sep 17 00:00:00 2001 From: madumlao Date: Sat, 23 Mar 2024 12:57:12 +0800 Subject: [PATCH] Update remote url to gitea --- README.md | 2 +- install.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 82be256..225daeb 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ Git repo of my personal shell profile variables ### Quick Install ``` -curl https://gitlab.com/madumlao/madumlao-profile/-/raw/master/install.sh | bash +curl https://gitea.madumlao.com/madumlao/madumlao-profile/src/branch/master/install.sh | bash ``` ### Manual Install diff --git a/install.sh b/install.sh index 9696e24..f8113ba 100755 --- a/install.sh +++ b/install.sh @@ -14,9 +14,9 @@ if [ "$DOWNLOAD_APP" ]; then mkdir -pv "$PARENT_DIR" if [ -x git ]; then cd "$PARENT_DIR" - git clone https://gitlab.com/madumlao/madumlao-profile + git clone https://gitea.madumlao.com/madumlao/madumlao-profile else - curl -O https://gitlab.com/madumlao/madumlao-profile/-/archive/master/madumlao-profile-master.tar.gz + curl -o madumlao-profile-master.tar.gz https://gitea.madumlao.com/madumlao/madumlao-profile/archive/master.tar.gz tar -zxf madumlao-profile-master.tar.gz -C "$PARENT_DIR" fi fi