diff options
Diffstat (limited to 'Meta/refresh-serenity-qtcreator.sh')
-rwxr-xr-x | Meta/refresh-serenity-qtcreator.sh | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/Meta/refresh-serenity-qtcreator.sh b/Meta/refresh-serenity-qtcreator.sh index 5666f0f52f..d8c95ed95a 100755 --- a/Meta/refresh-serenity-qtcreator.sh +++ b/Meta/refresh-serenity-qtcreator.sh @@ -1,8 +1,14 @@ #!/bin/sh +set -e + if [ -z "$SERENITY_ROOT" ] -then echo "Serenity root not set. Please set environment variable first. E.g. export SERENITY_ROOT=$(git rev-parse --show-toplevel)" +then + SERENITY_ROOT="$(git rev-parse --show-toplevel)" + echo "Serenity root not set. This is fine! Other scripts may require you to set the environment variable first, e.g.:" + echo " export SERENITY_ROOT=${SERENITY_ROOT}" fi -cd "$SERENITY_ROOT" || exit 1 -find . -name '*.ipc' -or -name '*.cpp' -or -name '*.idl' -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 +cd "$SERENITY_ROOT" + +find . \( -name Base -o -name Patches -o -name Ports -o -name Root -o -name Toolchain \) -prune -o \( -name '*.ipc' -or -name '*.cpp' -or -name '*.idl' -or -name '*.c' -or -name '*.h' -or -name '*.S' -or -name '*.css' \) -print > serenity.files |