aboutsummaryrefslogtreecommitdiff
path: root/bbot/agent/agent.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'bbot/agent/agent.cxx')
-rw-r--r--bbot/agent/agent.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/bbot/agent/agent.cxx b/bbot/agent/agent.cxx
index 1ef6d16..eacd05a 100644
--- a/bbot/agent/agent.cxx
+++ b/bbot/agent/agent.cxx
@@ -126,11 +126,11 @@ bootstrap_machine (const dir_path& md,
// PUT requests to .../bootstrap/<name>/*
//
auto_rmdir arm ((dir_path (ops.tftp ()) /= "bootstrap") /= tc_name);
- try_mkdir_p (arm.path ());
+ try_mkdir_p (arm.path);
// Bootstrap result manifest.
//
- path mf (arm.path () / "manifest");
+ path mf (arm.path / "manifest");
try_rmfile (mf);
// Note that unlike build, here we use the same VM snapshot for retries,
@@ -600,8 +600,8 @@ try
//
auto_rmdir arm ((dir_path (ops.tftp ()) /= "build") /= tc_name);
- dir_path gd (dir_path (arm.path ()) /= "get");
- dir_path pd (dir_path (arm.path ()) /= "put");
+ dir_path gd (dir_path (arm.path) /= "get");
+ dir_path pd (dir_path (arm.path) /= "put");
try_mkdir_p (gd);
try_mkdir_p (pd);