3be5099a8c
The primary presubmit (PRESUBMIT.py) now enforces this on git cl upload. It also uses a difference version of the formatter, so dropping this avoids that annoyance. R=jacobr@google.com Review-Url: https://codereview.chromium.org/2791643003 .
9 lines
152 B
Bash
Executable File
9 lines
152 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
DIR=$(dirname "${BASH_SOURCE[0]}")
|
|
$DIR/build_sdk.sh
|
|
$DIR/test.sh
|
|
$DIR/browser_test.sh
|
|
$DIR/analyze.sh
|
|
echo "*** Presubmit finished"
|