[gnome-builder] pipeline: fix Entering directory check match



commit af8b5121a651bc8d1ec33fce5658b7496ff70119
Author: Christian Hergert <chergert redhat com>
Date:   Fri Mar 24 19:45:28 2017 -0700

    pipeline: fix Entering directory check match
    
    We no longer get the newlines from the build log, so we need not check
    for the trailing \n in the logging output.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=780467

 libide/buildsystem/ide-build-pipeline.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/libide/buildsystem/ide-build-pipeline.c b/libide/buildsystem/ide-build-pipeline.c
index 6801e96..ae09b97 100644
--- a/libide/buildsystem/ide-build-pipeline.c
+++ b/libide/buildsystem/ide-build-pipeline.c
@@ -474,7 +474,7 @@ ide_build_pipeline_log_observer (IdeBuildLogStream  stream,
   g_assert (message != NULL);
 
 #define ENTERING_DIRECTORY_BEGIN "Entering directory '"
-#define ENTERING_DIRECTORY_END   "'\n"
+#define ENTERING_DIRECTORY_END   "'"
 
   if (message_len < 0)
     message_len = strlen (message);


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]