예제 #1
0
 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()
예제 #2
0
 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()
예제 #3
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()
예제 #4
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()
예제 #5
0
 def run(self, argv):
     options = self.get_command_line_args(argv[1:])
     engine = IceEngine(
         config_override=options.config, consoles_override=options.consoles, emulators_override=options.emulators
     )
     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()
예제 #6
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)