From 74cc31524cd367a40718071f032e090575713be6 Mon Sep 17 00:00:00 2001 From: Bryan MacFarlane Date: Tue, 14 Apr 2020 20:48:22 -0400 Subject: [PATCH] raw urls --- docs/automate.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/automate.md b/docs/automate.md index 996700a22..ef0952439 100644 --- a/docs/automate.md +++ b/docs/automate.md @@ -16,11 +16,11 @@ export RUNNER_CFG_PAT=yourPAT Repo level one liner; replace yourorg/yourrepo ```bash -curl https://github.com/actions/runner/blob/automate/scripts/latest-svc.sh | bash -s yourorg/yourrepo +curl https://raw.githubusercontent.com/actions/runner/automate/scripts/latest-svc.sh | bash -s yourorg/yourrepo ``` Org level one liner; replace yourorg ```bash -curl https://github.com/actions/runner/blob/automate/scripts/latest-svc.sh | bash -s yourorg +curl https://raw.githubusercontent.com/actions/runner/automate/scripts/latest-svc.sh | bash -s yourorg ```