missing .zip for fedi frontend steps

This commit is contained in:
Ruben 2025-07-16 21:25:42 -05:00
commit ef79fcc730
No known key found for this signature in database
GPG key ID: 8EA836555FB6D9A5

View file

@ -35,7 +35,7 @@ fi
# check that all required utils are installed # check that all required utils are installed
function check_applications { function check_applications {
local all_required_applications=("bash" "wget" "tar" "zstd" "backblaze-b2") local all_required_applications=("bash" "wget" "tar" "unzip" "zstd" "backblaze-b2")
for application in "${all_required_applications[@]}"; do for application in "${all_required_applications[@]}"; do
if [ ! -x "$(command -v $application)" ]; then if [ ! -x "$(command -v $application)" ]; then
@ -695,7 +695,7 @@ function fedi_update_frontends {
function _repeat_process { function _repeat_process {
wget "$1" -O /tmp/"$2".zip wget "$1" -O /tmp/"$2".zip
unzip -o /tmp/"$2" -d $frontend_folder/"$3" unzip -o /tmp/"$2" -d $frontend_folder/"$3"
rm /tmp/"$2" rm /tmp/"$2".zip
} }
# TODO: it's probably possible to turn this into an array loop of some sort # TODO: it's probably possible to turn this into an array loop of some sort