GitRepo.vala
authorAlan Knowles <alan@roojs.com>
Wed, 19 Dec 2018 04:06:09 +0000 (12:06 +0800)
committerAlan Knowles <alan@roojs.com>
Wed, 19 Dec 2018 04:06:09 +0000 (12:06 +0800)
GitRepo.vala

index 1970bc4..e9a2cb1 100644 (file)
@@ -257,19 +257,7 @@ public class GitRepo : Object
     }
     public void set_autopush(bool val)
     {
-
-               var cur = this.is_autopush();
-               GLib.debug("SET auto push : %s <= %s", val ? "ON" : "OFF",  cur  ? "ON" : "OFF");
-               if (cur == val) {
-                       return; // no change..
-               }
-               if (!val) {
-                       FileUtils.set_contents(this.gitdir + "/.gitlive-disable-autopush" , "");
-               } else {
-                       // it exists...
-                       FileUtils.remove(this.gitdir + "/.gitlive-disable-autopush" ); 
-               }
-    
+               this.set_config("autopush", val ? "1" : "0");
     }