diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2018-03-05 15:14:57 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2018-03-05 15:14:57 +0200 |
commit | 3d11f8bf4611a647dfae2eafe5f6c97ea4d642e7 (patch) | |
tree | f1af2bebd1d2fa956e0679420d28bb852cb61456 /bbot/worker/worker.cxx | |
parent | 6ffbe6d7054ee002887f1da4ec1e7d3e8716e200 (diff) |
Rename task/result/bootstrap manifests to *.manifest form
Diffstat (limited to 'bbot/worker/worker.cxx')
-rw-r--r-- | bbot/worker/worker.cxx | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/bbot/worker/worker.cxx b/bbot/worker/worker.cxx index a8e0f6d..13cb25c 100644 --- a/bbot/worker/worker.cxx +++ b/bbot/worker/worker.cxx @@ -232,7 +232,8 @@ build (size_t argc, const char* argv[]) // for abnormal situations (like a failure to parse the manifest), we just // fail. // - task_manifest tm (parse_manifest<task_manifest> (path ("manifest"), "task")); + task_manifest tm ( + parse_manifest<task_manifest> (path ("task.manifest"), "task")); result_manifest rm { tm.name, @@ -769,7 +770,7 @@ build (size_t argc, const char* argv[]) // Upload the result. // - const string url ("tftp://" + ops.tftp_host () + "/manifest"); + const string url ("tftp://" + ops.tftp_host () + "/result.manifest"); try { @@ -810,8 +811,8 @@ startup () // 5. If the environment setup executable fails, then upload the (failed) // result ourselves. // - const string url ("tftp://" + ops.tftp_host () + "/manifest"); - const path mf ("manifest"); + const string url ("tftp://" + ops.tftp_host () + "/task.manifest"); + const path mf ("task.manifest"); // If we fail, try to upload the result manifest (abnormal termination). The // idea is that the machine gets suspended and we can investigate what's |