Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/nextcloudpi.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'buildlib.sh')
-rw-r--r--buildlib.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/buildlib.sh b/buildlib.sh
index c7464d5c..9fc1b568 100644
--- a/buildlib.sh
+++ b/buildlib.sh
@@ -331,7 +331,7 @@ function upload_ftp()
echo -e "\n\e[1m[ Upload FTP ]\e[0m"
echo "* $IMGNAME..."
[[ -f torrent/"$IMGNAME"/"$IMGNAME".tar.bz2 ]] || { echo "No image file found, abort"; return 1; }
- [[ "$FTPPASS" == "" ]] && { echo "No FTPPASS variable found, abort"; return 0; }
+ [[ "$FTPPASS" == "" ]] && { echo "No FTPPASS variable found, abort"; return 2; }
cd torrent
@@ -371,7 +371,7 @@ upload_all()
mkdir -p archive
for img in $(find output -name '*.tar.bz2'); do
- upload_ftp "${img}" && mv "${img}" archive
+ upload_ftp "$(basename ${img} .tar.bz2)" && mv "${img}" archive
done
}