mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-21 23:20:20 +00:00
Meta: refresh-serenity-qtcreator.sh now checks if SERENITY_ROOT is set
This commit is contained in:
parent
bbe99ae960
commit
d058a9319d
Notes:
sideshowbarker
2024-07-19 17:42:37 +09:00
Author: https://github.com/OXiDE-dev 🔰 Commit: https://github.com/SerenityOS/serenity/commit/d058a9319da Pull-request: https://github.com/SerenityOS/serenity/pull/909
1 changed files with 4 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue