From 321d04eac490ba12c4fadd70a8077d165278168b Mon Sep 17 00:00:00 2001 From: committer Date: Wed, 15 May 2024 17:16:11 -0500 Subject: [PATCH] u --- scripts/99_deploy.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/99_deploy.sh b/scripts/99_deploy.sh index 3e99311..cb1a689 100644 --- a/scripts/99_deploy.sh +++ b/scripts/99_deploy.sh @@ -69,7 +69,8 @@ deploy_file() { suffix=".zip" if [[ ${file_name_src} == *$suffix ]] ; then - unzip ${_src_path} -d ${_trg_path} + # -o: overwrite without prompting + unzip -o ${_src_path} -d ${_trg_path} else # -f (--force): overwrite without confirmation cp --force --recursive ${_src_path} ${_trg_path}