From fd7eaefcbcbe30b7a71b15fce8e7acdf7d40398b Mon Sep 17 00:00:00 2001 From: hophacker Date: Sun, 5 Dec 2021 19:26:07 +0800 Subject: [PATCH] fix for installation link --- Rakefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Rakefile b/Rakefile index ef4ae40..a5fb2bc 100644 --- a/Rakefile +++ b/Rakefile @@ -66,7 +66,7 @@ end desc "install spacevim and related config files" task :install_spacevim do - run 'curl -sLf https://spacevim.org/install.sh | sed "s;github.com/SpaceVim;xiemala.com/ruilisi;" | bash' + run 'curl -sLf https://spacevim.org/install.sh | sed "s;github.com/SpaceVim;yuancode.ruilisi.com/ruilisi;" | bash' install_files(Dir.glob("SpaceVim*")) end @@ -74,7 +74,7 @@ desc "Update spacevim" task :update_spacevim do run %( cd ~/.SpaceVim - git remote set-url origin https://xiemala.com/ruilisi/SpaceVim.git + git remote set-url origin https://yuancode.ruilisi.com/ruilisi/SpaceVim.git git pull --rebase ) end