Dew-OF-Aurora 2 هفته پیش
والد
کامیت
4bc9003ca1
4فایلهای تغییر یافته به همراه4 افزوده شده و 4 حذف شده
  1. 1 1
      lib/config.rb
  2. 1 1
      os/LinuxDistro.rb
  3. 1 1
      os/MacOS.rb
  4. 1 1
      os/Windows.rb

+ 1 - 1
lib/config.rb

@@ -1,5 +1,5 @@
 module RimeDeploy
   module Config
-    RIME_CONFIG_REPO = "https://github.com/iDvel/rime-ice.git"
+    RIME_CONFIG_REPO = "https://github.com/gaboolic/rime-frost.git"
   end
 end

+ 1 - 1
os/LinuxDistro.rb

@@ -61,7 +61,7 @@ https://wiki.archlinux.org/title/Rime
       def call
         puts intro
         system(
-          "git clone --depth=1 #{Config::RIME_CONFIG_REPO} #{Store.config_path}"
+          "git clone #{Config::RIME_CONFIG_REPO} #{Store.config_path}"
         )
         sleep 1
         return :next

+ 1 - 1
os/MacOS.rb

@@ -27,7 +27,7 @@ module RimeDeploy
       def call
         puts intro
         system(
-          "git clone --depth=1 #{Config::RIME_CONFIG_REPO} #{Store.config_path}"
+          "git clone #{Config::RIME_CONFIG_REPO} #{Store.config_path}"
         )
         sleep 1
         return :next

+ 1 - 1
os/Windows.rb

@@ -47,7 +47,7 @@ You can download Rime from: https://rime.im/download/
       def call
         puts intro
         system(
-          "git clone --depth=1 #{Config::RIME_CONFIG_REPO} #{Store.config_path}"
+          "git clone #{Config::RIME_CONFIG_REPO} #{Store.config_path}"
         )
         sleep 1
         return :next