| Index: pkg/compiler/tool/status_files/update_all.sh
|
| diff --git a/pkg/compiler/tool/status_files/update_all.sh b/pkg/compiler/tool/status_files/update_all.sh
|
| index a82bd42a3d29167836fbe8bfb657c0091a52e283..e791573eb5176733068eb9e2e00b1bad503ef2be 100755
|
| --- a/pkg/compiler/tool/status_files/update_all.sh
|
| +++ b/pkg/compiler/tool/status_files/update_all.sh
|
| @@ -32,12 +32,17 @@ function update_suite {
|
|
|
| pushd $repodir > /dev/null
|
| ./tools/build.py -m release create_sdk
|
| -update_suite dart2js_native
|
| -update_suite dart2js_extra
|
| -update_suite language
|
| -update_suite language_2
|
| -update_suite corelib
|
| -update_suite corelib_2
|
| +
|
| +if [[ $# -ge 1 ]]; then
|
| + update_suite $1
|
| +else
|
| + update_suite dart2js_native
|
| + update_suite dart2js_extra
|
| + update_suite language
|
| + update_suite language_2
|
| + update_suite corelib
|
| + update_suite corelib_2
|
| +fi
|
|
|
| rm -rf $tmp
|
| popd > /dev/null
|
|
|