diff options
author | worktycho <work.tycho@gmail.com> | 2015-06-30 15:05:05 +0200 |
---|---|---|
committer | worktycho <work.tycho@gmail.com> | 2015-06-30 15:05:05 +0200 |
commit | 49d88ae790d84625d3a727573a65a4519e39d1b9 (patch) | |
tree | f5c2d16e3988cc8a6b3c019a22992407d2a24344 /MakeLuaAPI.cmd | |
parent | Merge pull request #2304 from cuberite/FixBlockAreaHeight (diff) | |
parent | Removed the MakeLuaAPI script. (diff) | |
download | cuberite-49d88ae790d84625d3a727573a65a4519e39d1b9.tar cuberite-49d88ae790d84625d3a727573a65a4519e39d1b9.tar.gz cuberite-49d88ae790d84625d3a727573a65a4519e39d1b9.tar.bz2 cuberite-49d88ae790d84625d3a727573a65a4519e39d1b9.tar.lz cuberite-49d88ae790d84625d3a727573a65a4519e39d1b9.tar.xz cuberite-49d88ae790d84625d3a727573a65a4519e39d1b9.tar.zst cuberite-49d88ae790d84625d3a727573a65a4519e39d1b9.zip |
Diffstat (limited to 'MakeLuaAPI.cmd')
-rw-r--r-- | MakeLuaAPI.cmd | 66 |
1 files changed, 0 insertions, 66 deletions
diff --git a/MakeLuaAPI.cmd b/MakeLuaAPI.cmd deleted file mode 100644 index 90b8cf53e..000000000 --- a/MakeLuaAPI.cmd +++ /dev/null @@ -1,66 +0,0 @@ -@echo off -:: MakeLuaAPI.cmd -:: This script is run after the nightbuild to produce the Lua API documentation and upload it to a website. -:: It expects at least three environment variables set: ftpsite, ftpuser and ftppass, specifying the FTP site and login to use for the upload - - - - - -:: Check that we got all the environment vars needed for the upload: - -if "a%ftppass%" == "a" ( - echo You need to set FTP password in the ftppass environment variable to upload the files - goto end -) -if "a%ftpuser%" == "a" ( - echo You need to set FTP username in the ftpuser environment variable to upload the files - goto end -) -if "a%ftpsite%" == "a" ( - echo You need to set FTP server in the ftpsite environment variable to upload the files - goto end -) - - - - - -:: Create the API documentation by running the server and stopping it right after it starts: - -cd MCServer -copy /Y settings_apidump.ini settings.ini -echo api | MCServer -cd .. - - - - - -:: Upload the API to the web: - -ncftpput -p %ftppass% -u %ftpuser% -T temp_ -R %ftpsite% /LuaAPI MCServer/API/*.* -if errorlevel 1 goto haderror -echo Upload finished. - -goto end - - - - - -:haderror -echo an error was encountered, check command output above -pause -goto finished - - - - - -:end -if "a%1" == "a" pause - - - -:finished
\ No newline at end of file |