diff options
Diffstat (limited to 'bbot/agent/agent.cxx')
-rw-r--r-- | bbot/agent/agent.cxx | 6 |
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"); |