forked from jbuchbinder/NagiosPluginsNT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmake_dist.cmd
27 lines (24 loc) · 1.07 KB
/
make_dist.cmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
@echo off
set DIST_DIR=%~dp0\..\dist
del /q %DIST_DIR%\*.*
rmdir %DIST_DIR%
mkdir %DIST_DIR%
copy %~dp0\CHANGELOG.txt %DIST_DIR%
copy %~dp0\LICENSE.txt %DIST_DIR%
copy %~dp0\check_cpu\bin\Release\*.exe %DIST_DIR%
copy %~dp0\check_disk_free\bin\Release\*.exe %DIST_DIR%
copy %~dp0\check_disk_time\bin\Release\*.exe %DIST_DIR%
copy %~dp0\check_disk_use\bin\Release\*.exe %DIST_DIR%
copy %~dp0\check_http\bin\Release\*.exe %DIST_DIR%
copy %~dp0\check_mem\bin\Release\*.exe %DIST_DIR%
copy %~dp0\check_ping\bin\Release\*.exe %DIST_DIR%
copy %~dp0\check_reg\bin\Release\*.exe %DIST_DIR%
copy %~dp0\check_services_stopped\bin\Release\*.exe %DIST_DIR%
copy %~dp0\check_snmp\bin\Release\*.exe %DIST_DIR%
copy %~dp0\check_snmp_if\bin\Release\*.exe %DIST_DIR%
copy %~dp0\check_swap\bin\Release\*.exe %DIST_DIR%
copy %~dp0\check_tcp\bin\Release\*.exe %DIST_DIR%
copy %~dp0\check_uname\bin\Release\*.exe %DIST_DIR%
copy %~dp0\check_uptime\bin\Release\*.exe %DIST_DIR%
copy %~dp0\NagiosPluginsNT\lib\Mono.GetOptions.dll %DIST_DIR%
copy %~dp0\NagiosPluginsNT\lib\snmp.dll %DIST_DIR%