From 0d93fee725630310aef68cac3e9ec3ae38b6215b Mon Sep 17 00:00:00 2001 From: Ben Busby Date: Fri, 26 Nov 2021 17:46:49 -0700 Subject: [PATCH] Fix sed command in instance update workflow --- .github/workflows/update-instances.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update-instances.yml b/.github/workflows/update-instances.yml index d16bddd..2227886 100644 --- a/.github/workflows/update-instances.yml +++ b/.github/workflows/update-instances.yml @@ -17,7 +17,7 @@ jobs: rm -f *-tmp.json # Ensure no trailing slashes for any instance - sed -i '' 's/\/"/"/g' services.json + sed -i 's/\/"/"/g' services.json } # ==============================================================