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