Explorar el Código

feat: update mac os

Mark24 hace 2 años
padre
commit
1516b1bf00
Se han modificado 1 ficheros con 8 adiciones y 3 borrados
  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,