aboutsummaryrefslogtreecommitdiff
path: root/bbot/agent
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2018-03-05 15:14:57 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2018-03-05 15:14:57 +0200
commit3d11f8bf4611a647dfae2eafe5f6c97ea4d642e7 (patch)
treef1af2bebd1d2fa956e0679420d28bb852cb61456 /bbot/agent
parent6ffbe6d7054ee002887f1da4ec1e7d3e8716e200 (diff)
Rename task/result/bootstrap manifests to *.manifest form
Diffstat (limited to 'bbot/agent')
-rw-r--r--bbot/agent/agent.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/bbot/agent/agent.cxx b/bbot/agent/agent.cxx
index ea0bb34..e3a674f 100644
--- a/bbot/agent/agent.cxx
+++ b/bbot/agent/agent.cxx
@@ -143,7 +143,7 @@ bootstrap_machine (const dir_path& md,
// Bootstrap result manifest.
//
- path mf (arm.path / "manifest");
+ path mf (arm.path / "bootstrap.manifest");
try_rmfile (mf);
// Note that unlike build, here we use the same VM snapshot for retries,
@@ -628,8 +628,8 @@ try
try_mkdir_p (gd);
try_mkdir_p (pd);
- path tf (gd / "manifest"); // Task manifest file.
- path rf (pd / "manifest"); // Result manifest file.
+ path tf (gd / "task.manifest"); // Task manifest file.
+ path rf (pd / "result.manifest"); // Result manifest file.
serialize_manifest (tm, tf, "task");