Skip to content

Commit

Permalink
The sed command was broken because of hte additional whitespace in th…
Browse files Browse the repository at this point in the history
…e pattern match part of the sed command.
  • Loading branch information
gwynforthewyn committed Oct 30, 2023
1 parent 010f30d commit 3f209ad
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/update-formula.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ jobs:

- name: "update formula"
run: |
sed -i "s|url .* |url ${{ inputs.DOWNLOAD_URL }}|" Formula/templ.rb
sed -i "s|sha256 .* |sha256 ${{ inputs.SHA_256 }}|" Formula/templ.rb
sed -i "s|version .* |version ${{ inputs.VERSION }}|" Formula/templ.rb
sed -i "s|url .*|url \"${{ inputs.DOWNLOAD_URL }}\"|" Formula/templ.rb
sed -i "s|sha256 .*|sha256 \"${{ inputs.SHA_256 }}\"|" Formula/templ.rb
sed -i "s|version .*|version \"${{ inputs.VERSION }}\"|" Formula/templ.rb
- name: "a debug step, in github? How shocking"
run: |
Expand Down

0 comments on commit 3f209ad

Please sign in to comment.