From cf54450cfd3d79a18b4e478a1753e07582beea8f Mon Sep 17 00:00:00 2001 From: Maschell Date: Sat, 13 May 2017 15:35:30 +0200 Subject: [PATCH] Ignoring the languages file while uploading the nigtly to the appstore --- ftpupload.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ftpupload.sh b/ftpupload.sh index 8b416c3..bda9e93 100644 --- a/ftpupload.sh +++ b/ftpupload.sh @@ -4,7 +4,7 @@ cd $TRAVIS_BUILD_DIR/wiiu/apps/hidtovpad for entry in "$TRAVIS_BUILD_DIR/wiiu/apps/hidtovpad"/*; do - if [ "$entry" != "languages" ]; then + if [ "${entry##*/}" != "languages" ]; then echo "Uploading ${entry##*/}" curl --ftp-create-dirs -T "${entry##*/}" -u $FTP_USER:$FTP_PASSWORD "$FTP_SERVER/${entry##*/}" > /dev/null 2>&1 fi