Files
ladybird/Meta/refresh-ladybird-qtcreator.sh
Andrew Kaster 5c835157c6 Documentation+Meta: Remove references to nonexistent Toolchain directory
After b1d708dd16, the Toolchain directory
was removed from the repository. Some documentation and scripts still
referenced it, so this commit removes those references. The only
remaining references are in the gitignore file, to prevent bisections
from being polluted by the presence of a Toolchain directory in the
working copy.
2026-04-21 06:56:32 -04:00

40 lines
959 B
Bash
Executable File

#!/bin/sh
set -e
if [ -z "$LADYBIRD_SOURCE_DIR" ]
then
LADYBIRD_SOURCE_DIR="$(git rev-parse --show-toplevel)"
echo "Ladybird root not set. This is fine! Other scripts may require you to set the environment variable first, e.g.:"
echo " export LADYBIRD_SOURCE_DIR=${LADYBIRD_SOURCE_DIR}"
fi
cd "${LADYBIRD_SOURCE_DIR}"
find . \( \
-name Base \
-o -name Patches \
-o -name Ports \
-o -name Root \
-o -name Build \
\) -prune \
-o \( \
-name '*.ipc' \
-o -name '*.cpp' \
-o -name '*.idl' \
-o -name '*.c' \
-o -name '*.h' \
-o -name '*.in' \
-o -name '*.css' \
-o -name '*.cmake' \
-o -name '*.json' \
-o -name 'CMakeLists.txt' \
\) \
-print > ladybird.files
find Build/release/ \( \
-name '*.cpp' \
-o -name '*.idl' \
-o -name '*.h' \
\) \
-print >> ladybird.files # Append