From 8bf17379acb23c8490f282253a80e1c0e7984f76 Mon Sep 17 00:00:00 2001 From: Julian Ospald Date: Thu, 23 Feb 2023 23:33:03 +0800 Subject: [PATCH] Fix windows bootstrap, fixes #796 --- .github/workflows/bootstrap.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/bootstrap.yaml b/.github/workflows/bootstrap.yaml index 960645a..dc98871 100644 --- a/.github/workflows/bootstrap.yaml +++ b/.github/workflows/bootstrap.yaml @@ -51,5 +51,8 @@ jobs: - if: runner.os == 'Windows' name: Run bootstrap - run: ./scripts/bootstrap/bootstrap-haskell.ps1 -InstallDir ${GITHUB_WORKSPACE} -BootstrapUrl ${GITHUB_WORKSPACE}/bootstrap-haskell -InBash + run: | + $curDir = Get-Location + Write-Host "Current Working Directory: $curDir" + ./scripts/bootstrap/bootstrap-haskell.ps1 -InstallDir ${GITHUB_WORKSPACE} -BootstrapUrl ("{0}/scripts/bootstrap/bootstrap-haskell" -f $curDir) -InBash shell: pwsh