From 736e8f2c6c2ce7addec75ceb6f8da5ed52a9a128 Mon Sep 17 00:00:00 2001 From: Maschell Date: Sat, 13 May 2017 15:22:43 +0200 Subject: [PATCH] Small correction to the ftpupload script --- ftpupload.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ftpupload.sh b/ftpupload.sh index 2786bd1..d6c11aa 100644 --- a/ftpupload.sh +++ b/ftpupload.sh @@ -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