Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit e1f1a53

Browse files
committed
Only run contrib check if there is a Makefile
1 parent e574f2a commit e1f1a53

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/tools/msvc/vcregress.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@echo off
2-
REM $PostgreSQL: pgsql/src/tools/msvc/vcregress.bat,v 1.9 2007/04/05 12:31:36 mha Exp $
2+
REM $PostgreSQL: pgsql/src/tools/msvc/vcregress.bat,v 1.10 2007/04/06 13:44:39 adunstan Exp $
33

44
SETLOCAL
55
SET STARTDIR=%CD%
@@ -79,7 +79,7 @@ REM Check contrib modules
7979
:contribcheck
8080
cd ..\..\..\contrib
8181
set CONTRIBERROR=0
82-
for /d %%d IN (*) do if exist %%d\sql if exist %%d\expected (
82+
for /d %%d IN (*) do if exist %%d\sql if exist %%d\expected if exist %%d\Makefile (
8383
call :onecontribcheck %%d
8484
if errorlevel 1 set CONTRIBERROR=1
8585
)

0 commit comments

Comments
 (0)