Skip to content

Commit 73c7599

Browse files
committed
fix: use the -f flag to overwrite cache directory
1 parent 8bcec48 commit 73c7599

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/rust.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ jobs:
4343
run: |
4444
${{ steps.cache-cef.outputs.cache-hit && 'echo "Cached CEF"'
4545
|| (matrix.os == 'windows-latest'
46-
&& 'cargo run -p export-cef-dir -- "$env:USERPROFILE/.local/share/cef"'
47-
|| 'cargo run -p export-cef-dir -- "$HOME/.local/share/cef"')
46+
&& 'cargo run -p export-cef-dir -- -f "$env:USERPROFILE/.local/share/cef"'
47+
|| 'cargo run -p export-cef-dir -- -f "$HOME/.local/share/cef"')
4848
}}
4949
echo "CEF_PATH=${{ matrix.os == 'windows-latest'
5050
&& '$env:USERPROFILE'

0 commit comments

Comments
 (0)