diff options
author | Panagiotis Vasilopoulos <hello@alwayslivid.com> | 2021-04-20 03:51:04 +0300 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-04-20 15:27:52 +0200 |
commit | e45e0eeb477629bd877e1837724e121f0c11b9ca (patch) | |
tree | 7ea93a0d751e72fce33291cc0c96204bc14b4064 /Meta/refresh-serenity-qtcreator.sh | |
parent | 3f5c934ea61999d2a946daac1fd8c672da33d87a (diff) | |
download | serenity-e45e0eeb477629bd877e1837724e121f0c11b9ca.zip |
Everywhere: Replace SERENITY_ROOT with SERENITY_SOURCE_DIR
Diffstat (limited to 'Meta/refresh-serenity-qtcreator.sh')
-rwxr-xr-x | Meta/refresh-serenity-qtcreator.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Meta/refresh-serenity-qtcreator.sh b/Meta/refresh-serenity-qtcreator.sh index f89825b0a4..3fb4653144 100755 --- a/Meta/refresh-serenity-qtcreator.sh +++ b/Meta/refresh-serenity-qtcreator.sh @@ -2,13 +2,13 @@ set -e -if [ -z "$SERENITY_ROOT" ] +if [ -z "$SERENITY_SOURCE_DIR" ] then - SERENITY_ROOT="$(git rev-parse --show-toplevel)" + SERENITY_SOURCE_DIR="$(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}" + echo " export SERENITY_SOURCE_DIR=${SERENITY_SOURCE_DIR}" fi -cd "$SERENITY_ROOT" +cd "$SERENITY_SOURCE_DIR" find . \( -name Base -o -name Patches -o -name Ports -o -name Root -o -name Toolchain -o -name Build \) -prune -o \( -name '*.ipc' -or -name '*.cpp' -or -name '*.idl' -or -name '*.c' -or -name '*.h' -or -name '*.S' -or -name '*.css' -or -name '*.json' -or -name '*.gml' -or -name 'CMakeLists.txt' \) -print > serenity.files |