summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIain Lane <iain.lane@canonical.com>2016-01-05 10:43:57 (GMT)
committerMartin Pitt <martin.pitt@ubuntu.com>2016-01-05 10:48:34 (GMT)
commit0d7f5a9a516fc0005821fc136f1fb9dfe164672e (patch)
tree623cc083a6602875d3126fca027e0144ba8c7aaf
parent9d043a6f15eee53008b680e3bfbb791c8fe9d885 (diff)
adt-buildvm-ubuntu-cloud: Fix typo in path to system setup-testbed script
-rwxr-xr-xtools/adt-buildvm-ubuntu-cloud2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/adt-buildvm-ubuntu-cloud b/tools/adt-buildvm-ubuntu-cloud
index 26d4ef7..87d62db 100755
--- a/tools/adt-buildvm-ubuntu-cloud
+++ b/tools/adt-buildvm-ubuntu-cloud
@@ -246,7 +246,7 @@ def build_seed(mirror, proxy, no_apt_upgrade, metadata_file=None,
# find setup-testbed, copy it into the VM via the cloud-init seed iso
for script in [os.path.join(os.path.dirname(os.path.abspath(os.path.dirname(__file__))),
'setup-commands', 'setup-testbed'),
- '/usr/share/autopkgtest/setup-commands setup-testbed']:
+ '/usr/share/autopkgtest/setup-commands/setup-testbed']:
if os.path.exists(script):
shutil.copy(script, workdir)
break