diff options
| -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 |
