1#!/usr/bin/python
2# Copyright (c) 2012 The Native Client Authors. All rights reserved.
3# Use of this source code is governed by a BSD-style license that can be
4# found in the LICENSE file.
5
6from driver_log import Log, StringifyCommand
7from driver_env import env
8
9def main(argv):
10  argv = [env.getone('DRIVER_PATH')] + argv
11  Log.Fatal('ILLEGAL COMMAND: ' + StringifyCommand(argv))
12