From f84f6820ae6f54be08387acd190d59b57c819942 Mon Sep 17 00:00:00 2001 From: Robsdedude Date: Tue, 17 Mar 2020 16:38:03 +0100 Subject: [PATCH] Fix missing FTP argument in CMake target 'send' --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 121dafd..7919aab 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -217,7 +217,7 @@ if (EXISTS "${psvitaipFilePath}") file(STRINGS "${psvitaipFilePath}" PSVITAIP) add_custom_target(send - COMMAND curl -T ${SHORT_NAME}.self ftp://${PSVITAIP}:1337/ux0:/app/${VITA_TITLEID}/eboot.bin + COMMAND curl --ftp-method nocwd -T ${SHORT_NAME}.self ftp://${PSVITAIP}:1337/ux0:/app/${VITA_TITLEID}/eboot.bin DEPENDS ${SHORT_NAME}.self ) @@ -227,7 +227,7 @@ if (EXISTS "${psvitaipFilePath}") ) add_custom_target(vpksend - COMMAND curl -T ${SHORT_NAME}.vpk ftp://${PSVITAIP}:1337/ux0:/ + COMMAND curl --ftp-method nocwd -T ${SHORT_NAME}.vpk ftp://${PSVITAIP}:1337/ux0:/ DEPENDS ${SHORT_NAME}.vpk ) else ()