Skip to content

Commit

Permalink
build.hooks.pyprojectWheelDist use copy instead of softlink
Browse files Browse the repository at this point in the history
The symbolic link name is not used with matchWheelFileName but instead
$(basename $src) is used, which includes the store hash.
  • Loading branch information
edwtjo committed Feb 13, 2025
1 parent 3ee4005 commit e00bb3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/hooks/pyproject-wheel-dist-hook.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ pyprojectWheelDist() {

echo "Creating dist..."
mkdir -p dist
ln -s "$src" "dist/$(stripHash "$src")"
cp "$src" "dist/$(stripHash "$src")"

runHook postBuild
echo "Finished executing pyprojectWheelDist"
Expand Down

0 comments on commit e00bb3e

Please sign in to comment.