fixed cygwin path in vmmanager
authorom
Fri, 06 Dec 2013 13:05:34 +0100
changeset 21850b73508550
parent 20 85571680438a
child 25 84fa487212c6
fixed cygwin path in vmmanager
OpenSecurity/bin/vmmanager.py
     1.1 --- a/OpenSecurity/bin/vmmanager.py	Fri Dec 06 13:01:51 2013 +0100
     1.2 +++ b/OpenSecurity/bin/vmmanager.py	Fri Dec 06 13:05:34 2013 +0100
     1.3 @@ -44,7 +44,7 @@
     1.4      
     1.5      def __init__(self):
     1.6          self.systemProperties = self.getSystemProperties()
     1.7 -        self.cygwin_path = Cygwin.root()
     1.8 +        self.cygwin_path = os.path.join(Cygwin.root(), 'bin')
     1.9          self.vboxManage = os.path.join(getVBoxManagePath, 'VBoxManage')
    1.10          return
    1.11