diff options
Diffstat (limited to 'tools')
-rw-r--r-- | tools/grit/grit/grit_runner.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/grit/grit/grit_runner.py b/tools/grit/grit/grit_runner.py index c0edef9..2af7299 100644 --- a/tools/grit/grit/grit_runner.py +++ b/tools/grit/grit/grit_runner.py @@ -1,4 +1,4 @@ -#!/usr/bin/python2.4 +#!/usr/bin/python2.4 # Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. @@ -172,6 +172,9 @@ def Main(args): else: options = Options() args = options.ReadOptions(args) # args may be shorter after this + if not args: + print "No tool provided. Try running 'grit help' for a list of tools." + return 2 tool = args[0] if not _GetToolInfo(tool): print "No such tool. Try running 'grit help' for a list of tools." |