mirror of
https://github.com/flame-engine/flame.git
synced 2025-10-29 16:05:47 +08:00
* Moving tutorials to the Flame main repository * Update README.md Co-authored-by: Jochum van der Ploeg <jochum@vdploeg.net> * Upgraded scripts to support multi projects * Removed comment out code * Adding WIP disclaimer Co-authored-by: Jochum van der Ploeg <jochum@vdploeg.net>
18 lines
223 B
Bash
Executable File
18 lines
223 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
./scripts/format.sh
|
|
if [ $? -eq 1 ]; then
|
|
echo "Formatting failed!"
|
|
exit 1
|
|
fi
|
|
|
|
echo ""
|
|
|
|
./scripts/analyze.sh
|
|
if [ $? -eq 1 ]; then
|
|
echo "Analyzing failed!"
|
|
exit 1
|
|
fi
|
|
|
|
echo "Succesfully linted!"
|