diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-09-29 20:03:08 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-09-29 20:03:08 +0100 |
| commit | c53ca5da9d8521745e6a4cb202440273d7e797f9 (patch) | |
| tree | b352e86aaba400b7a0852138b0b05e6d0712d2ce | |
| parent | 1c70c735026f9f8b3042f963f390cdc81523c72c (diff) | |
Fix up.host
| -rwxr-xr-x | cdist | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -443,10 +443,10 @@ class ChrootTarget(LinuxTarget): class HostTarget(LinuxTarget): """Build directly on the host""" def __init__(self, distro, version, bits, directory=None): - super(VMTarget, self).__init__(distro, version, bits, directory) + super(HostTarget, self).__init__(distro, version, bits, directory) def command(self, c): - command('%s %s' % (self.port, self.host, self.variables_string(), c)) + command('%s %s' % (self.variables_string(), c)) # # OS X |
