Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c40130 commit ab94cc9Copy full SHA for ab94cc9
src/tools/msvc/vcregress.bat
@@ -1,5 +1,5 @@
1
@echo off
2
-REM $PostgreSQL: pgsql/src/tools/msvc/vcregress.bat,v 1.8 2007/04/05 12:10:40 mha Exp $
+REM $PostgreSQL: pgsql/src/tools/msvc/vcregress.bat,v 1.9 2007/04/05 12:31:36 mha Exp $
3
4
SETLOCAL
5
SET STARTDIR=%CD%
@@ -78,10 +78,12 @@ exit /b %E%
78
REM Check contrib modules
79
:contribcheck
80
cd ..\..\..\contrib
81
+set CONTRIBERROR=0
82
for /d %%d IN (*) do if exist %%d\sql if exist %%d\expected (
83
call :onecontribcheck %%d
- if errorlevel 1 exit /b 1
84
+ if errorlevel 1 set CONTRIBERROR=1
85
)
86
+if %CONTRIBERROR%==1 exit /b 1
87
goto :eof
88
89
REM Check a single contrib module
0 commit comments