blob: f929e195818400f5f87bdecdfb3bdd37f27647fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#/bin/bash
##
## regression test on Windows using MSBuild
## from WSL or cygwin
##
cd $(dirname $0)
pscript=winbuild/regress.ps1
if [ $# -gt 0 ]; then
if [ $1 = "/?" ]; then
powershell.exe Get-Help $pscript -detailed
exit 0
elif [ $1 = "-?" ]; then
shift
powershell.exe Get-Help $pscript $*
exit 0
fi
fi
powershell.exe $pscript $*
|