aboutsummaryrefslogtreecommitdiff
path: root/bbot/agent/agent.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2017-07-21 09:36:42 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2017-07-21 09:36:42 +0200
commit660734e039951385122709527ce09c300b0b6b68 (patch)
tree8c810e2bb19316de428c8e8680ad5562549ad95b /bbot/agent/agent.cxx
parent87a366098031e8818441f6d18e4e5dcb33a6d0e7 (diff)
Adjust to auto_rm changes
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);