Skip to content

Commit

Permalink
Fix missing FTP argument in CMake target 'send'
Browse files Browse the repository at this point in the history
  • Loading branch information
robsdedude committed Mar 17, 2020
1 parent ffef2c8 commit f84f682
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
)

Expand All @@ -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 ()
Expand Down

0 comments on commit f84f682

Please sign in to comment.