mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-08-14 05:45:59 +03:00
- Included Dockerfile to automate the setup process of prerequisites and build of libModSecurity binaries.
18 lines
430 B
Batchfile
18 lines
430 B
Batchfile
@rem Copyright (C) Microsoft Corporation. All rights reserved.
|
|
@rem Licensed under the MIT license. See LICENSE.txt in the project root for license information.
|
|
|
|
@if not defined _echo echo off
|
|
setlocal enabledelayedexpansion
|
|
|
|
call %*
|
|
if "%ERRORLEVEL%"=="3010" (
|
|
exit /b 0
|
|
) else (
|
|
if not "%ERRORLEVEL%"=="0" (
|
|
set ERR=%ERRORLEVEL%
|
|
call C:\TEMP\collect.exe -zip:C:\vslogs.zip
|
|
|
|
exit /b !ERR!
|
|
)
|
|
)
|