Skip to content

Commit

Permalink
Meta: refresh-serenity-qtcreator.sh now checks if SERENITY_ROOT is set
Browse files Browse the repository at this point in the history
  • Loading branch information
anon authored and awesomekling committed Dec 24, 2019
1 parent bbe99ae commit d058a93
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Meta/refresh-serenity-qtcreator.sh
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit d058a93

Please sign in to comment.