2020-06-16 20:57:50 -07:00
|
|
|
#!/bin/bash
|
|
|
|
|
2020-08-15 20:58:29 -07:00
|
|
|
#
|
|
|
|
# we have code duplication with three "upload_xxx*" files
|
|
|
|
# todo: clean it up? use this version with five parameters for all use-cases?
|
|
|
|
# todo: rename this script since it's a universal one?
|
|
|
|
#
|
2020-06-16 20:57:50 -07:00
|
|
|
|
|
|
|
if [ ! "$1" ] || [ ! "$2" ] || [ ! "$3" ]; then
|
|
|
|
echo "No Secrets"
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo -e "\nUploading plugin body"
|
|
|
|
|
2020-08-15 20:58:29 -07:00
|
|
|
ncftpput -m -R -v -u "$1" -p "$2" "$3" $4 $5
|