diff options
author | Andrew Dunstan <andrew@dunslane.net> | 2007-04-06 13:44:39 +0000 |
---|---|---|
committer | Andrew Dunstan <andrew@dunslane.net> | 2007-04-06 13:44:39 +0000 |
commit | e1f1a5358bd9f775fca3f0c6676f8a265cbf552d (patch) | |
tree | ecb3367262c6dad87a6cf38033bf42946318cf1c | |
parent | e574f2a029d707201aad307983fa74972aceab4a (diff) | |
download | postgresql-e1f1a5358bd9f775fca3f0c6676f8a265cbf552d.tar.gz postgresql-e1f1a5358bd9f775fca3f0c6676f8a265cbf552d.zip |
Only run contrib check if there is a Makefile
-rw-r--r-- | src/tools/msvc/vcregress.bat | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/msvc/vcregress.bat b/src/tools/msvc/vcregress.bat index 44fe4afd767..6bb115023e3 100644 --- a/src/tools/msvc/vcregress.bat +++ b/src/tools/msvc/vcregress.bat @@ -1,5 +1,5 @@ @echo off -REM $PostgreSQL: pgsql/src/tools/msvc/vcregress.bat,v 1.9 2007/04/05 12:31:36 mha Exp $ +REM $PostgreSQL: pgsql/src/tools/msvc/vcregress.bat,v 1.10 2007/04/06 13:44:39 adunstan Exp $ SETLOCAL SET STARTDIR=%CD% @@ -79,7 +79,7 @@ REM Check contrib modules :contribcheck cd ..\..\..\contrib set CONTRIBERROR=0 -for /d %%d IN (*) do if exist %%d\sql if exist %%d\expected ( +for /d %%d IN (*) do if exist %%d\sql if exist %%d\expected if exist %%d\Makefile ( call :onecontribcheck %%d if errorlevel 1 set CONTRIBERROR=1 ) |