Browse Subversion Repository
Contents of /trunk/EWatch/pack.bat
Parent Directory
| Revision Log
Revision 126 -
( show annotations)
( download)
( as text)
Tue Aug 1 11:39:52 2023 UTC
(8 months, 1 week ago)
by bananajinn
File MIME type: application/x-msdos-program
File size: 781 byte(s)
パスワードを平文で書かなくていいようにしたいの修正
| 1 |
set WORKDIR=pack |
| 2 |
|
| 3 |
rd /S /Q %WORKDIR% |
| 4 |
md %WORKDIR% |
| 5 |
md %WORKDIR%\EWatch |
| 6 |
md %WORKDIR%\EWatch\etc |
| 7 |
xcopy EWatch\bin\Release\net6.0\*.dll %WORKDIR%\EWatch |
| 8 |
xcopy EWatch\bin\Release\net6.0\*.exe %WORKDIR%\EWatch |
| 9 |
xcopy EWatch\bin\Release\net6.0\*.json %WORKDIR%\EWatch |
| 10 |
xcopy /S /Q /I EWatch\bin\Release\net6.0\runtimes %WORKDIR%\EWatch\runtimes |
| 11 |
xcopy EWatchCLI\bin\Release\net6.0\*.exe %WORKDIR%\EWatch |
| 12 |
xcopy EWatchCLI\bin\Release\net6.0\*.dll %WORKDIR%\EWatch |
| 13 |
xcopy EWatchCLI\bin\Release\net6.0\*.json %WORKDIR%\EWatch |
| 14 |
xcopy EWatch\etc\notWindows\*.* %WORKDIR%\EWatch\etc |
| 15 |
pushd %WORKDIR%\EWatch\etc\ |
| 16 |
ren EWatch.config.json EWatch.config.json.example |
| 17 |
ren log4net.config.xml log4net.config.xml.example |
| 18 |
popd |
| 19 |
pushd %WORKDIR% |
| 20 |
tar -a -c -f EWatch-2.0.x.zip EWatch |
| 21 |
popd |
| 22 |
pause |
|