Remove verbosity from extraction

This commit is contained in:
zontreck 2025-06-29 11:51:28 -07:00
parent 43cfb617b6
commit 1105b4fe89

View file

@ -26,7 +26,7 @@ download_game() {
# Extract and clean up # Extract and clean up
mkdir -pv $extract_path mkdir -pv $extract_path
cd $extract_path cd $extract_path
tar -xvf "${download_path}.tar.gz" && rm "${download_path}.tar.gz" tar -xf "${download_path}.tar.gz" && rm -v "${download_path}.tar.gz"
if [ $? -eq 0 ] if [ $? -eq 0 ]
then then