blob: 478b29c477e2458aa0a78f6acef6cecce52bc5b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
::
:: Build installers of psqlodbc project
::
@echo off
if "%1" == "/?" (
powershell Get-Help '%~dp0\installer\buildInstallers.ps1' -detailed
) else if "%1" == "-?" (
powershell Get-Help '%~dp0\installer\buildInstallers.ps1' %2 %3 %4 %5 %6 %7 %8 %9
) else (
powershell "& '%~dp0\installer\buildInstallers.ps1' %*"
)
|