From c7977b6c6fc8afafa55b43151da1b38fe39f033f Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Fri, 6 Mar 2020 01:33:45 -0800 Subject: [PATCH] ci: github: tweaks --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c9dc25ca6..0c8404a50 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -115,9 +115,9 @@ jobs: - name: Install stack (windows) if: matrix.os == 'windows-latest' run: | - PowerShell.exe -Command "&{Invoke-WebRequest -OutFile ${installdir}\\stack.zip https://get.haskellstack.org/stable/windows-x86_64.zip ; 7z e ${installdir}\\stack.zip -o${installdir} stack.exe ; Remove-Item ${installdir}\\stack.zip}" - # curl -skL -o stack.zip http://www.stackage.org/stack/windows-x86_64 - # 7z x stack.zip stack.exe + # PowerShell.exe -Command "&{Invoke-WebRequest -OutFile %HOME%\\stack.zip https://get.haskellstack.org/stable/windows-x86_64.zip ; 7z e ${installdir}\\stack.zip -o${installdir} stack.exe }" + curl -skL -o stack.zip http://www.stackage.org/stack/windows-x86_64 + 7z x stack.zip -o ~/.local/bin stack.exe stack --version - name: Install haskell deps