From: Alan Knowles Date: Wed, 19 Dec 2018 04:06:09 +0000 (+0800) Subject: GitRepo.vala X-Git-Url: http://git.roojs.org/?p=gitlive;a=commitdiff_plain;h=f423f28a43934ff9af9d1446b49d3451e8ccdd00 GitRepo.vala --- diff --git a/GitRepo.vala b/GitRepo.vala index 1970bc4c..e9a2cb15 100644 --- a/GitRepo.vala +++ b/GitRepo.vala @@ -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"); }