From 9420cb5c18d3e32ab3c1e1cf695a246d16be5891 Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Sat, 17 Mar 2018 10:47:10 -0400 Subject: [PATCH] clarify what _no_ log means: not a partial loog --- ofborg/src/tasks/githubcommentposter.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ofborg/src/tasks/githubcommentposter.rs b/ofborg/src/tasks/githubcommentposter.rs index a98a5e4..306c2c4 100644 --- a/ofborg/src/tasks/githubcommentposter.rs +++ b/ofborg/src/tasks/githubcommentposter.rs @@ -113,7 +113,7 @@ fn result_to_comment(result: &BuildResult) -> String { if result.output.len() > 0 { reply.extend(partial_log_segment(&result.output)); } else { - reply.push("No log is available.".to_owned()); + reply.push("No partial log is available.".to_owned()); reply.push("".to_owned()); } @@ -416,7 +416,7 @@ patching script interpreter paths in /nix/store/pcja75y9isdvgz5i00pkrpif9rxzxc29 The following builds were skipped because they don't evaluate on x86_64-linux: not-attempted -No log is available. +No partial log is available. " ); }