diff options
| author | Ben Busby <noreply+git@benbusby.com> | 2021-11-26 17:46:49 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-26 17:46:49 -0700 |
| commit | 0d93fee725630310aef68cac3e9ec3ae38b6215b (patch) | |
| tree | d2fa3851bfd4817a24643b14bf30a58fc351a97f /.github | |
| parent | 8e3455a7901aad415eded19218edbed826a2fca5 (diff) | |
| download | farside-0d93fee725630310aef68cac3e9ec3ae38b6215b.tar.gz | |
Fix sed command in instance update workflow
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/update-instances.yml | 2 |
1 files changed, 1 insertions, 1 deletions
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 } # ============================================================== |
