10 lines
98 B
Bash
Executable File
10 lines
98 B
Bash
Executable File
#!/bin/bash
|
|
set -ex
|
|
|
|
./fmt.sh -- --write-mode=diff
|
|
make
|
|
if [ -z "$TARGET" ]
|
|
then
|
|
make test
|
|
fi
|