Move all png files so they do not get counted as APKs.

This commit is contained in:
2026-07-04 08:17:28 -07:00
parent 97189374b9
commit 105e5ff99f
+3 -3
View File
@@ -115,11 +115,11 @@ RUN bash -c 'if [[ -n "$FILE19" ]]; then wget -P "$REPO" "$FILE19"; fi'
# Move any downloaded metadata files to the correct folder. # Move any downloaded metadata files to the correct folder.
RUN cp -v "$REPO"/*.yml "$REPO"/../metadata || \ RUN cp -v "$REPO"/*.yml "$REPO"/../metadata || \
echo "No YML files to copy." echo "No YML file(s) to copy."
# Move any downloaded icons to the proper folder. # Move any downloaded icons to the proper folder.
RUN mv -v "$REPO"/"$REPO_ICON" "$REPO"/icons/ || \ RUN mv -v "$REPO"/*.png "$REPO"/icons/ || \
echo "No PNG files to copy." echo "No PNG file(s) to copy."
# If the icon variable is set, add it to the config file before updating again. # If the icon variable is set, add it to the config file before updating again.
RUN [ ! -z "$REPO_ICON" ] && \ RUN [ ! -z "$REPO_ICON" ] && \