updated README

This commit is contained in:
Leyla Becker 2024-10-03 23:04:17 +02:00
parent cb1f8665e5
commit c0167bd5d1
2 changed files with 4 additions and 3 deletions

View file

@ -2,13 +2,14 @@
git stash -q --keep-index
echo "checking flakes all compile"
nix flake check
if [ $? -eq 0 ]; then
if [ ! $? -eq 0 ]; then
exit 1
fi
echo "running linter"
./lint.sh
RESULT=$?