@echo off REM $PostgreSQL$ if NOT "%1"=="" GOTO RUN_INSTALL echo Invalid command line options. echo Usage: "install.bat " echo. exit /b 1 :RUN_INSTALL SETLOCAL if exist src\tools\msvc\buildenv.bat call src\tools\msvc\buildenv.bat if exist buildenv.bat call buildenv.bat perl install.pl "%1" exit /b %ERRORLEVEL%