mirror of
https://github.com/flame-engine/flame.git
synced 2025-11-12 19:01:09 +08:00
14 lines
212 B
Bash
Executable File
14 lines
212 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
./scripts/format.sh
|
|
if [ $? -eq 1 ]; then
|
|
echo "Formatting failed!"
|
|
exit 1
|
|
fi
|
|
./scripts/analyze.sh
|
|
if [ $? -eq 1 ]; then
|
|
echo "Analyzing failed!"
|
|
exit 1
|
|
fi
|
|
|
|
echo "Succesfully linted!" |