def run(self, argv):
     options = self.get_command_line_args(argv[1:])
     engine = IceEngine(options)
     engine.run(dry_run=options.dry_run)
     # Keeps the console from closing (until the user hits enter) so they can
     # read any console output
     print ""
     print "Close the window, or hit enter to exit..."
     raw_input()
Beispiel #2
0
 def run(self, argv):
     # TODO: Configure IceEngine based on the contents of argv
     engine = IceEngine()
     engine.run()
     # Keeps the console from closing (until the user hits enter) so they can
     # read any console output
     print ""
     print "Close the window, or hit enter to exit..."
     raw_input()
Beispiel #3
0
 def run(self, argv):
   options = self.get_command_line_args(argv[1:])
   engine = IceEngine(self.steam, filesystem = self.filesystem, options = options)
   engine.run(dry_run=options.dry_run)