Skip to content

Commit

Permalink
Merge pull request #502 from andrewkroh/line-endings
Browse files Browse the repository at this point in the history
Normalize all the line endings
  • Loading branch information
tsg committed Dec 10, 2015
2 parents 49799a4 + 793bcb3 commit e8ac7bd
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions winlogbeat/make.bat
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
@echo off

REM
REM Batch script to build and test on Windows. You can use this in conjunction
REM with the Vagrant machine.
REM

echo Building
go build
if %errorlevel% neq 0 exit /b %errorlevel%

echo Testing
go test ./...
if %errorlevel% neq 0 exit /b %errorlevel%

echo System Testing
go test -c -covermode=atomic -coverpkg ./...
if %errorlevel% neq 0 exit /b %errorlevel%
nosetests -w tests\system --process-timeout=30
if %errorlevel% neq 0 exit /b %errorlevel%
@echo off

REM
REM Batch script to build and test on Windows. You can use this in conjunction
REM with the Vagrant machine.
REM

echo Building
go build
if %errorlevel% neq 0 exit /b %errorlevel%

echo Testing
go test ./...
if %errorlevel% neq 0 exit /b %errorlevel%

echo System Testing
go test -c -covermode=atomic -coverpkg ./...
if %errorlevel% neq 0 exit /b %errorlevel%
nosetests -w tests\system --process-timeout=30
if %errorlevel% neq 0 exit /b %errorlevel%

0 comments on commit e8ac7bd

Please sign in to comment.