| Index: tools/only_in_release_mode.py
|
| diff --git a/tools/only_in_release_mode.py b/tools/only_in_release_mode.py
|
| index 089d30c039c91245c1f18d42f832bc18610f14c1..c2cc97926a1acab87b00acc5090edd682f853941 100644
|
| --- a/tools/only_in_release_mode.py
|
| +++ b/tools/only_in_release_mode.py
|
| @@ -1,13 +1,13 @@
|
| #!/usr/bin/env python
|
| #
|
| -# Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
|
| +# Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
|
| # for details. All rights reserved. Use of this source code is governed by a
|
| # BSD-style license that can be found in the LICENSE file.
|
|
|
| """
|
| Wrapper around a build action that should only be executed in release mode.
|
|
|
| -The mode is defined via an environment varible DART_BUILD_MODE.
|
| +The mode is defined via an environment variable DART_BUILD_MODE.
|
|
|
| The arguments to the script are:
|
|
|
| @@ -29,7 +29,7 @@ def Main():
|
| outputs = sys.argv[1:separator_index]
|
| arguments = sys.argv[separator_index + 1:]
|
| arguments[0] = os.path.normpath(arguments[0])
|
| - mode = os.getenv('DART_BUILD_MODE', default='release')
|
| + mode = os.getenv('DART_BUILD_MODE', 'release')
|
| if mode != 'release':
|
| print >> sys.stderr, 'Not running %s in mode=%s' % (arguments, mode)
|
| for output in outputs:
|
|
|