summaryrefslogtreecommitdiff
path: root/hadrian/build.stack.bat
blob: 642ab0639a5061aaa36f96df77fd85f968e8cf0f (plain)
1
2
3
4
5
6
7
8
9
10
11
@echo off
setlocal
rem Change the current directory to the one containing this script
cd %~dp0

rem Build Hadrian and dependencies and exit the script if the build failed
stack build
if %errorlevel% neq 0 exit /B %errorlevel%

rem Run Hadrian in GHC top directory forwarding additional user arguments
stack exec hadrian -- --directory ".." %*