Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 #!/bin/bash | |
| 2 | |
| 3 set -e # bail on error | |
| 4 | |
| 5 # Some tests require being run from the package root | |
| 6 # switch to the root directory of dev_compiler | |
| 7 cd $( dirname "${BASH_SOURCE[0]}" )/.. | |
| 8 | |
| 9 dart -c ./bin/dartdevc.dart compile --no-summarize \ | |
| 10 -o test/command/hello.js test/command/hello.dart | |
| OLD | NEW |