Skip to content

Commit

Permalink
Drop extra backslashes in continous command
Browse files Browse the repository at this point in the history
  • Loading branch information
meatballhat committed Apr 21, 2022
1 parent 902f5ab commit 64aad19
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/cli.yml
Expand Up @@ -71,9 +71,9 @@ jobs:

- name: Install Dependencies
run:
mkdir -p "${GITHUB_WORKSPACE}/.local/bin" && \
curl -fsSL -o "${GITHUB_WORKSPACE}/.local/bin/gfmrun" "https://github.com/urfave/gfmrun/releases/download/v1.3.0/gfmrun-$(go env GOOS)-$(go env GOARCH)-v1.3.0" && \
chmod +x "${GITHUB_WORKSPACE}/.local/bin/gfmrun" && \
mkdir -p "${GITHUB_WORKSPACE}/.local/bin" &&
curl -fsSL -o "${GITHUB_WORKSPACE}/.local/bin/gfmrun" "https://github.com/urfave/gfmrun/releases/download/v1.3.0/gfmrun-$(go env GOOS)-$(go env GOARCH)-v1.3.0" &&
chmod +x "${GITHUB_WORKSPACE}/.local/bin/gfmrun" &&
npm install -g markdown-toc@1.2.0

- name: gfmrun
Expand Down

0 comments on commit 64aad19

Please sign in to comment.