From eb3561f05a89d0801a7281684074833dbc14ea74 Mon Sep 17 00:00:00 2001 From: John Edwards Date: Sat, 19 Jul 2025 11:53:43 +0100 Subject: [PATCH] fix: align zip and tar functionality so that both will overwrite files --- bookworm/etc/entry.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bookworm/etc/entry.sh b/bookworm/etc/entry.sh index 6ec2427..2d53a2a 100644 --- a/bookworm/etc/entry.sh +++ b/bookworm/etc/entry.sh @@ -78,7 +78,7 @@ if [[ ! -z $CS2_CFG_URL ]]; then case "${TEMP_FILE}" in *.zip) echo "Extracting ZIP file..." - unzip -q "${TEMP_FILE}" -d "${STEAMAPPDIR}" + unzip -o -q "${TEMP_FILE}" -d "${STEAMAPPDIR}" ;; *.tar.gz | *.tgz) echo "Extracting TAR.GZ or TGZ file..."