12 lines
123 B
Bash
Executable File
12 lines
123 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -ex
|
|
|
|
./fmt.sh -- --check
|
|
if [ -z "$TARGET" ]
|
|
then
|
|
make all
|
|
make test
|
|
else
|
|
make libs
|
|
fi
|