Meta: refresh-serenity-qtcreator.sh now checks if SERENITY_ROOT is set

This commit is contained in:
anon 2019-12-24 10:23:43 +02:00 committed by Andreas Kling
parent bbe99ae960
commit d058a9319d
Notes: sideshowbarker 2024-07-19 17:42:37 +09:00

View file

@ -1,4 +1,8 @@
#!/bin/sh
if [ ! -n "$SERENITY_ROOT" ]
then echo "Serenety root not set."
fi
cd "$SERENITY_ROOT" || exit 1
find . -name '*.ipc' -or -name '*.cpp' -or -name '*.c' -or -name '*.h' -or -name '*.S' -or -name '*.css' | grep -Fv Patches/ | grep -Fv Root/ | grep -Fv Ports/ | grep -Fv Toolchain/ | grep -Fv Base/ > serenity.files