From 89ccf6795c52f050c701916460c7f279d839c3b7 Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Mon, 14 Aug 2017 11:06:05 +0800 Subject: [PATCH] GitRepo.vala --- GitRepo.vala | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/GitRepo.vala b/GitRepo.vala index 5d158cd5..14064cc7 100644 --- a/GitRepo.vala +++ b/GitRepo.vala @@ -72,7 +72,7 @@ public class GitRepo : Object } } catch (Error e) { - print(e.message); + print("Error: %s\n",e.message); break; } @@ -293,7 +293,7 @@ public class GitRepo : Object //this.lastCmd = args.join(" "); //if(this.debug) { stdout.printf( "CWD=%s\n", this.git_working_dir ); - print( string.joinv (" ", args)); + print( "cmd: %s\n", string.joinv (" ", args)); //} string[] env = {}; @@ -305,7 +305,6 @@ public class GitRepo : Object //} - var cfg = new SpawnConfig(this.git_working_dir , args , env); -- 2.39.2