diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-03-19 17:47:43 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-03-19 17:47:43 +0000 |
commit | 94a648222a4f16327fb763f6575622ad5c7b9ff6 (patch) | |
tree | f083af101bced3cd7faf5b6ae1b5145aec653189 /plugins/!NotAdopted/rps/ZIP/doit.bat | |
parent | 41129d7c8f96a75b97748d11cd7586e0c7f128a4 (diff) |
- reinstated
git-svn-id: http://svn.miranda-ng.org/main/trunk@4114 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/!NotAdopted/rps/ZIP/doit.bat')
-rw-r--r-- | plugins/!NotAdopted/rps/ZIP/doit.bat | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/plugins/!NotAdopted/rps/ZIP/doit.bat b/plugins/!NotAdopted/rps/ZIP/doit.bat new file mode 100644 index 0000000000..47911225d3 --- /dev/null +++ b/plugins/!NotAdopted/rps/ZIP/doit.bat @@ -0,0 +1,58 @@ +@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.
|