| Index: tools/utils.py
|
| diff --git a/tools/utils.py b/tools/utils.py
|
| index 08cb2a6805365972f02d69ef7ce453889be78e3c..8f4a83ea90e9c47925a4d495d5e42013458020ca 100644
|
| --- a/tools/utils.py
|
| +++ b/tools/utils.py
|
| @@ -119,7 +119,10 @@ def GetDartRunner(mode, arch, component):
|
| elif component == 'frogsh':
|
| return os.path.join(build_root, 'frog', 'bin', 'frogsh')
|
| else:
|
| - return os.path.join(build_root, 'dart')
|
| + suffix = ''
|
| + if IsWindows():
|
| + suffix = '.exe'
|
| + return os.path.join(build_root, 'dart') + suffix
|
|
|
|
|
| # Mapping table between build mode and build configuration.
|
|
|