Small correction to the ftpupload script

This commit is contained in:
Maschell 2017-05-13 15:22:43 +02:00
parent 7ac389a738
commit 736e8f2c6c

View File

@ -24,7 +24,7 @@ cd $TRAVIS_BUILD_DIR/wiiu/controller
for entry in "$TRAVIS_BUILD_DIR/wiiu/controller"/*
do
echo "Uploading ${entry##*/}"
curl --ftp-create-dirs -T "${entry##*/}" -u $FTP_USER:$FTP_PASSWORD "$FTP_SERVER/sd/wiiu/apps/hidtovpad/languages/${entry##*/}" > /dev/null 2>&1
curl --ftp-create-dirs -T "${entry##*/}" -u $FTP_USER:$FTP_PASSWORD "$FTP_SERVER/sd/wiiu/controller/${entry##*/}" > /dev/null 2>&1
done