| OLD | NEW |
| 1 #!/bin/bash -x | 1 #!/usr/bin/env bash |
| 2 # | 2 # |
| 3 |
| 4 set -x |
| 5 |
| 3 # go.sh [systems] | 6 # go.sh [systems] |
| 4 # | 7 # |
| 5 # Convenience script to generate systems. Do not call from build steps or tests | 8 # Convenience script to generate systems. Do not call from build steps or tests |
| 6 # - call fremontcutbuilder and dartdomgenerator instead. Do not add 'real' | 9 # - call fremontcutbuilder and dartdomgenerator instead. Do not add 'real' |
| 7 # functionality here - change the python code instead. | 10 # functionality here - change the python code instead. |
| 8 # | 11 # |
| 9 # I find it essential to generate all the systems so I know if I am breaking | 12 # I find it essential to generate all the systems so I know if I am breaking |
| 10 # other systems. My habit is to run: | 13 # other systems. My habit is to run: |
| 11 # | 14 # |
| 12 # ./go.sh | tee Q | 15 # ./go.sh | tee Q |
| (...skipping 15 matching lines...) Expand all Loading... |
| 28 | 31 |
| 29 ALLSYSTEMS="htmldart2js,htmldartium" | 32 ALLSYSTEMS="htmldart2js,htmldartium" |
| 30 SYSTEMS="$ALLSYSTEMS" | 33 SYSTEMS="$ALLSYSTEMS" |
| 31 | 34 |
| 32 if [[ "$1" != "" ]] ; then | 35 if [[ "$1" != "" ]] ; then |
| 33 SYSTEMS="$1" | 36 SYSTEMS="$1" |
| 34 fi | 37 fi |
| 35 | 38 |
| 36 reset && \ | 39 reset && \ |
| 37 ./dartdomgenerator.py --systems="$SYSTEMS" --logging=40 --update-dom-metadata --
gen-interop | 40 ./dartdomgenerator.py --systems="$SYSTEMS" --logging=40 --update-dom-metadata --
gen-interop |
| OLD | NEW |