fix: typo $src -> $sub in cp loop

This commit is contained in:
Zac Gaetano 2026-05-06 16:19:57 -04:00
parent 601d7bc7b3
commit 5dca8a2d9f

View file

@ -30,7 +30,7 @@ echo "wilddragon-overlay: layering $OVERLAY -> $UI"
# stays intact except for the files we override.
for sub in public src; do
if [ -d "$OVERLAY/$sub" ]; then
cp -RLp "$OVERLAY/$sub/." "$UI/$src/"
cp -RLp "$OVERLAY/$sub/." "$UI/$sub/"
fi
done