GitRepo.vala
authorAlan Knowles <alan@akbkhome.com>
Sat, 10 May 2014 13:23:21 +0000 (21:23 +0800)
committerAlan Knowles <alan@akbkhome.com>
Sat, 10 May 2014 13:23:21 +0000 (21:23 +0800)
GitRepo.vala

index bc88b12..330a493 100644 (file)
@@ -43,7 +43,7 @@ public class GitRepo : Object
         // cal parent?
         
         this.gitdir = path + "/.git";
-        if (!GLib.file_test(this.gitdir , GLib.FileTest.IS_DIR)) {
+        if (!FileUtils.test(this.gitdir , FileTest.IS_DIR)) {
             this.gitdir = path; // naked...
         }
         this.cmds = new  Array<GitMonitorQueue> ();