mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
462e223c3d
The variable is not set anymore by the UseIt.sh script, so if a user doesn't have it set in the .bashrc or .zshrc file already, it's not working properly.
8 lines
423 B
Bash
Executable file
8 lines
423 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if [ ! -n "$SERENITY_ROOT" ]
|
|
then echo "Serenity root not set. Please set environment variable first. E.g. export SERENITY_ROOT=$(git rev-parse --show-toplevel)"
|
|
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
|