From 01ba4336a4c79a58962e801853e85637749d6247 Mon Sep 17 00:00:00 2001 From: Ajitem Sahasrabuddhe Date: Fri, 6 Dec 2019 12:16:15 +0530 Subject: [PATCH] fix windows build --- .github/workflows/cli.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cli.yml b/.github/workflows/cli.yml index 7ef0dbd..9d5d5d4 100644 --- a/.github/workflows/cli.yml +++ b/.github/workflows/cli.yml @@ -54,8 +54,8 @@ jobs: - name: Install Dependencies (Windows) if: matrix.os == 'windows-latest' run: | - md $GOPATH/bin - curl -L -o $GOPATH/bin/gfmrun "https://github.com/urfave/gfmrun/releases/download/v1.2.14/gfmrun-windows-amd64-v1.2.14.exe" + md $GOPATH\bin + curl -L -o $GOPATH\bin\gfmrun.exe "https://github.com/urfave/gfmrun/releases/download/v1.2.14/gfmrun-windows-amd64-v1.2.14.exe" npm install markdown-toc - name: Run Tests (v1)