This commit is contained in:
qiaofeng1227 2023-10-30 17:41:03 +08:00
parent 18f706a7eb
commit abcebe2559
2 changed files with 5 additions and 5 deletions

View file

@ -1,4 +1,4 @@
# modify time: 202310301701, you can modify here to trigger Docker Build action # modify time: 202310301730, you can modify here to trigger Docker Build action
FROM python:3.10-slim-bullseye FROM python:3.10-slim-bullseye
LABEL maintainer="Websoft9<help@websoft9.com>" LABEL maintainer="Websoft9<help@websoft9.com>"

View file

@ -88,10 +88,10 @@ upgrade_zip() {
fi fi
# Get the name of the package without the .zip extension for syncing # Get the name of the package without the .zip extension for syncing
local package_directory="${package_name%.zip}" local package_directory="${package_name%%-*}"
# Sync the unzipped package to the desired location # Sync the unzipped package to the desired location
rsync -av "/tmp/$package_directory" "$sync_to" rsync -av "/tmp/$package_directory/" "$sync_to"
# Check if the sync was successful # Check if the sync was successful
if [ $? -ne 0 ]; then if [ $? -ne 0 ]; then
@ -102,8 +102,8 @@ upgrade_zip() {
echo "Successfully downloaded, unzipped, and synced package: $package_name" echo "Successfully downloaded, unzipped, and synced package: $package_name"
# Remove the downloaded .zip file and the unzipped directory # Remove the downloaded .zip file and the unzipped directory
rm "/tmp/$package_name" rm -f "/tmp/$package_name"
rm -r "/tmp/$package_directory" rm -rf "/tmp/$package_directory"
return 0 return 0
} }