Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
yamachu committed Jan 24, 2025
1 parent f877542 commit cf02fda
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/composite/build-dev-rust/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,9 @@ runs:
find . -type l | while read link; do
target=$(readlink "$link")
if [ -f "$target" ]; then
cp "$target" "$link"
elif [ -d "$target" ]; then
rm "$link"
cp -r "$target" "$link"
cp "$target" "$link".tmp
unlink "$link"
mv "$link".tmp "$link"
fi
done
- if: ${{ steps.restore-dev-library.outputs.cache-hit != 'true' }}
Expand Down

0 comments on commit cf02fda

Please sign in to comment.