Drop extra backslashes in continous command

This commit is contained in:
Dan Buch 2022-04-21 15:24:14 -04:00
parent 902f5abbc8
commit 64aad19eb5
Signed by: meatballhat
GPG Key ID: A12F782281063434

View File

@ -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