| Index: tools/create_sdk.py
|
| diff --git a/tools/create_sdk.py b/tools/create_sdk.py
|
| index 872251a4aba684f6aaae79a60af7d61f3021336c..aeba302c1d48ca060a1d6378923b296270809d13 100755
|
| --- a/tools/create_sdk.py
|
| +++ b/tools/create_sdk.py
|
| @@ -98,7 +98,8 @@ def Copy(src, dest):
|
| # TODO(zundel): this excludes the analyzer from the sdk build until builders
|
| # have all prerequisite software installed. Also update dart.gyp.
|
| def ShouldCopyAnalyzer():
|
| - return utils.GuessOS() == 'linux'
|
| + os = utils.GuessOS();
|
| + return os == 'linux' or os == 'macos'
|
|
|
|
|
| def CopyShellScript(src_file, dest_dir):
|
|
|