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,