diff options
Diffstat (limited to 'plugins/!NotAdopted/rps/ZIP/doit.bat')
-rw-r--r-- | plugins/!NotAdopted/rps/ZIP/doit.bat | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/plugins/!NotAdopted/rps/ZIP/doit.bat b/plugins/!NotAdopted/rps/ZIP/doit.bat deleted file mode 100644 index 47911225d3..0000000000 --- a/plugins/!NotAdopted/rps/ZIP/doit.bat +++ /dev/null @@ -1,58 +0,0 @@ -@echo off
-
-rem Batch file to build and upload files
-rem
-rem TODO: Integration with FL
-
-set name=rps
-
-rem To upload, this var must be set here or in other batch
-rem set ftp=ftp://<user>:<password>@<ftp>/<path>
-
-echo Building %name% ...
-
-msdev ..\%name%.dsp /MAKE "%name% - Win32 Release" /REBUILD
-
-echo Generating files for %name% ...
-
-del *.zip
-del *.dll
-copy ..\Docs\%name%_changelog.txt
-copy ..\Docs\%name%_version.txt
-copy ..\Docs\%name%_readme.txt
-mkdir Docs
-cd Docs
-del /Q *.*
-copy ..\..\Docs\%name%_readme.txt
-cd ..
-mkdir Plugins
-cd Plugins
-del /Q *.*
-copy ..\..\..\..\bin\release\Plugins\RemovePersonalSettings.dll
-copy ..\..\RemovePersonalSettings.ini
-cd ..
-
-"C:\Program Files\Filzip\Filzip.exe" -a -rp %name%.zip Docs Plugins
-
-cd Docs
-del /Q *.*
-cd ..
-rmdir Docs
-cd Plugins
-del /Q *.*
-cd ..
-rmdir Plugins
-
-if "%ftp%"=="" GOTO END
-
-echo Going to upload files...
-pause
-
-"C:\Program Files\FileZilla\FileZilla.exe" -u .\%name%.zip %ftp% -overwrite -close
-"C:\Program Files\FileZilla\FileZilla.exe" -u .\%name%_changelog.txt %ftp% -overwrite -close
-"C:\Program Files\FileZilla\FileZilla.exe" -u .\%name%_version.txt %ftp% -overwrite -close
-"C:\Program Files\FileZilla\FileZilla.exe" -u .\%name%_readme.txt %ftp% -overwrite -close
-
-:END
-
-echo Done.
|