builder: Make git patch apply verbose by default

Git is prone to ignoring patches in some cases, lets
at least print the details.
This commit is contained in:
Alexander Larsson
2017-04-24 10:29:57 +02:00
parent c053c49ead
commit 69123b564e

View File

@@ -220,6 +220,7 @@ patch (GFile *dir,
if (use_git) {
g_ptr_array_add (args, "git");
g_ptr_array_add (args, "apply");
g_ptr_array_add (args, "-v");
} else {
g_ptr_array_add (args, "patch");
}