From 4d560b3597e00b0bb646eefcba7b1562b7c6b4ea Mon Sep 17 00:00:00 2001 From: Hyperling Date: Sat, 4 Jul 2026 08:05:00 -0700 Subject: [PATCH] Only move the specific repo icon. Do a move not a copy so that it does not get counted as an app. --- Config/F-DroidRepo/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Config/F-DroidRepo/Dockerfile b/Config/F-DroidRepo/Dockerfile index 59a5afe..72e380e 100644 --- a/Config/F-DroidRepo/Dockerfile +++ b/Config/F-DroidRepo/Dockerfile @@ -118,7 +118,7 @@ RUN cp -v "$REPO"/*.yml "$REPO"/../metadata || \ echo "No YML files to copy." # Move any downloaded icons to the proper folder. -RUN cp -v "$REPO"/*.png "$REPO"/icons/ || \ +RUN mv -v "$REPO"/"$REPO_ICON" "$REPO"/icons/ || \ echo "No PNG files to copy." # If the icon variable is set, add it to the config file before updating again.