mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-23 09:46:04 -05:00
f19b88c965
The need for SERENITY_ROOT was basically eliminated in
73c953b674
. The existing guess
'git rev-parse --show-toplevel' should be correct in all conceivable cases.
Most code just assumes the layout in git, or depends on SERENITY_ROOT as
set in the CMakeLists.txt. *Requiring* the user to set it doesn't make
sense anymore.
While I was in there anyway, I added exit code propagation. Also, 'find' should
be a tad faster now, because it doesn't enumerate files in the large ignored
directories Build/ and Toolchain/ anymore.
14 lines
550 B
Bash
Executable file
14 lines
550 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
if [ -z "$SERENITY_ROOT" ]
|
|
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"
|
|
|
|
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
|