Skip to content

Commit 7f0fadb

Browse files
committed
updated the workflow to explicitly create a backup file with -i.bak (which is standard and works identically on both macOS and Linux)
1 parent 28dc242 commit 7f0fadb

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/CI.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ jobs:
3737
- name: Strip JET from test deps (pre-release only)
3838
if: matrix.version == 'pre'
3939
run: |
40-
sed -i '/^JET /d' test/Project.toml
40+
sed -i.bak '/^JET /d' test/Project.toml
41+
rm -f test/Project.toml.bak
4142
shell: bash
4243
- uses: julia-actions/julia-buildpkg@v1
4344
- uses: julia-actions/julia-runtest@v1

0 commit comments

Comments
 (0)