From 5e0531818f4bf53a36ebafc79fa689ca58001302 Mon Sep 17 00:00:00 2001 From: "committer@tuxwarrior" Date: Tue, 27 Aug 2024 14:39:13 -0500 Subject: [PATCH] / tar fix --- scripts/99_deploy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/99_deploy.sh b/scripts/99_deploy.sh index ca73a90..be78156 100755 --- a/scripts/99_deploy.sh +++ b/scripts/99_deploy.sh @@ -86,7 +86,7 @@ deploy_file() { # -o: overwrite without prompting unzip -o ${_src_path} -d ${_trg_path} elif [[ ${file_name_src} == *$suffix2 ]] ; then - tar -xf -o ${_src_path} -C ${_trg_path} + tar -xf ${_src_path} -C ${_trg_path} else # -f (--force): overwrite without confirmation cp --force --recursive ${_src_path} ${_trg_path}