0c736d8069
* E001: Trailing Whitespace * E003: Indent not multiple of 4 * E010: Do not on same line as for * E011: Then keyword is not on same line as if keyword * E020: Function declaration not in format "^function name {$": 'function check_file() {' Change-Id: I73724bd2dfb9c908900919ce7b769c410a06eb1d
11 lines
200 B
Bash
Executable File
11 lines
200 B
Bash
Executable File
#!/bin/bash
|
|
|
|
command -v tox > /dev/null 2>&1
|
|
if [ $? -ne 0 ]; then
|
|
echo 'This script requires "tox" to run.'
|
|
echo 'You can install it with "pip install tox".'
|
|
exit 1;
|
|
fi
|
|
|
|
tox -evenv -- $@
|