summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xcdist4
1 files changed, 2 insertions, 2 deletions
diff --git a/cdist b/cdist
index 21f363e..df61fbd 100755
--- a/cdist
+++ b/cdist
@@ -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