瀏覽代碼

feat: update mac os

Mark24 2 年之前
父節點
當前提交
c8f3068e16
共有 1 個文件被更改,包括 8 次插入3 次删除
  1. 8 3
      os/mac.rb

+ 8 - 3
os/mac.rb

@@ -19,9 +19,7 @@ module RimeDeploy
     class CloneConfigJob < Job
       def call
         puts intro
-        system(
-          "git clone --depth=1 https://github.com/iDvel/rime-ice.git ~/Library/Rime"
-        )
+        system("git clone https://github.com/iDvel/rime-ice.git ~/Library/Rime")
         return :next
       end
     end
@@ -35,6 +33,13 @@ module RimeDeploy
       end
     end
 
+    class FinishedJob < Job
+      def call
+        puts "Please restart system then open Rime Setting and click DEPLOY."
+        return :next
+      end
+    end
+
     Jobs = [
       InstallRimeJob,
       BackupRimeConfigJob,