| Index: tools/dom/scripts/go.sh
|
| diff --git a/tools/dom/scripts/go.sh b/tools/dom/scripts/go.sh
|
| index 99c4e72377a4feff26531041ec331c8ed6f84e19..609a9cd12a271ff34e6a5e55746c00defc47cf2a 100755
|
| --- a/tools/dom/scripts/go.sh
|
| +++ b/tools/dom/scripts/go.sh
|
| @@ -16,15 +16,7 @@ set -x
|
| #
|
| # I can inspect file Q if needed.
|
| #
|
| -# To generate a subset of systems:
|
| -#
|
| -# ./go.sh dart2js,htmldartium
|
| -#
|
| -# To re-gen all sdk/lib files (outside of a Dartium enlistment the file
|
| -# 'sdk/lib/js/cached_patches.dart' might not need to be generated). To run
|
| -# go.sh w/o the patches files used --no-cached-patches switch e.g.,
|
| -#
|
| -# ./go.sh --no-cached-patches
|
| +# Re-gen all sdk/lib files
|
| #
|
| # The following gives a picture of the changes due to 'work'
|
| #
|
| @@ -35,22 +27,11 @@ set -x
|
| # ./go.sh
|
| # meld ../generated0 ../generated # compare directories with too
|
|
|
| -ALLSYSTEMS="htmldart2js,htmldartium,_blink"
|
| -SYSTEMS="$ALLSYSTEMS"
|
| +SYSTEMS="htmldart2js"
|
|
|
| if [[ "$1" != "" ]] ; then
|
| if [[ "$1" =~ ^-- ]]; then
|
| ARG_OPTION="$1"
|
| - else
|
| - SYSTEMS="$1"
|
| - fi
|
| -fi
|
| -
|
| -if [[ "$2" != "" ]] ; then
|
| - if [[ "$2" =~ ^-- ]]; then
|
| - ARG_OPTION="$2"
|
| - else
|
| - SYSTEMS="$2"
|
| fi
|
| fi
|
|
|
|
|