diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2021-09-09 09:45:03 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2021-09-09 09:45:03 +0200 |
commit | c6dc5c7dd952af1921d5bffe1381dfd5cee2cefb (patch) | |
tree | c7ba826af1a1b7249bbe3d41a15a92e81924646c | |
parent | 0c05f474809303f5aa95eee304432e613003bffc (diff) |
Fix 2lz4
-rw-r--r-- | bbot/worker/worker.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bbot/worker/worker.cxx b/bbot/worker/worker.cxx index 328513f..eb7f50b 100644 --- a/bbot/worker/worker.cxx +++ b/bbot/worker/worker.cxx @@ -2123,7 +2123,7 @@ build (size_t argc, const char* argv[]) // Upload the result. // - const string url ("tftp://" + ops.tftp_host () + "/result.manifest"); + const string url ("tftp://" + ops.tftp_host () + "/result.manifest.lz4"); try { @@ -2301,7 +2301,7 @@ startup () } catch (const failed&) { - const string url ("tftp://" + ops.tftp_host () + "/result.manifest"); + const string url ("tftp://" + ops.tftp_host () + "/result.manifest.lz4"); // If we failed before being able to parse the task manifest, use the // "unknown" values for the package name and version. |