mirror of
https://github.com/postgres/postgres.git
synced 2026-03-14 06:32:18 -04:00
Instead of using a hardcoded or default path to the perl file the .bat file is a wrapper for, we use a path that means the file is found in the same directory as the .bat file. Patch by Anton Voloshin, slightly tweaked by me. Backpatch to all live branches Discussion: https://postgr.es/m/2b7a674b-5fb0-d264-75ef-ecc7a31e54f8@postgrespro.ru
6 lines
239 B
Batchfile
Executable file
6 lines
239 B
Batchfile
Executable file
@echo off
|
|
REM src/tools/msvc/build.bat
|
|
REM all the logic for this now belongs in build.pl. This file really
|
|
REM only exists so you don't have to type "perl build.pl"
|
|
REM Resist any temptation to add any logic here.
|
|
@perl %~dp0/build.pl %*
|