mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-05 05:56:53 +03:00
11 lines
405 B
Bash
Executable File
11 lines
405 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
SERENITY_PORTS_DIR="${SERENITY_SOURCE_DIR}/Build/${SERENITY_ARCH}/Root/usr/Ports"
|
|
|
|
for file in $(git ls-files "${SERENITY_SOURCE_DIR}/Ports"); do
|
|
if [ "$(basename "$file")" != ".hosted_defs.sh" ]; then
|
|
target=${SERENITY_PORTS_DIR}/$(realpath --relative-to="${SERENITY_SOURCE_DIR}/Ports" "$file")
|
|
mkdir -p "$(dirname "$target")" && cp "$file" "$target"
|
|
fi
|
|
done
|