We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12ef22d commit 949b0a2Copy full SHA for 949b0a2
scripts/release/test-data/release-layout.yml
@@ -14,4 +14,6 @@ layout:
14
- shell: |
15
shasum -a 256 ${{ layout.root }}/* > checksums.txt
16
# Remove the layout root from the checksums.txt
17
- sed -i '' -e "s|${{ layout.root }}/||g" checksums.txt
+ # We don't use inplace because of BSD vs GNU shenanigans
18
+ sed -e "s|${{ layout.root }}/||g" checksums.txt > checksums-rewritten.txt
19
+ mv checksums-rewritten.txt checksums.txt
0 commit comments