From 5dca8a2d9ff300beee8afae7f061ed8ebd23016a Mon Sep 17 00:00:00 2001 From: ZGaetano Date: Wed, 6 May 2026 16:19:57 -0400 Subject: [PATCH] fix: typo $src -> $sub in cp loop --- apply-overlay.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apply-overlay.sh b/apply-overlay.sh index 4be039e..12db38b 100644 --- a/apply-overlay.sh +++ b/apply-overlay.sh @@ -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