Skip to content
This repository was archived by the owner on Aug 15, 2025. It is now read-only.

Truncate RECORD instead of delete #1215

Merged
merged 1 commit into from
Dec 6, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions manywheel/build_common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -387,10 +387,10 @@ for pkg in /$WHEELHOUSE_DIR/torch*linux*.whl /$LIBTORCH_HOUSE_DIR/libtorch*.zip;
record_file=$(echo $(basename $pkg) | sed -e 's/-cp.*$/.dist-info\/RECORD/g')
if [[ -e $record_file ]]; then
echo "Generating new record file $record_file"
rm -f $record_file
: > "$record_file"
# generate records for folders in wheel
find * -type f | while read fname; do
echo $(make_wheel_record $fname) >>$record_file
make_wheel_record "$fname" >>"$record_file"
done
fi

Expand Down
4 changes: 2 additions & 2 deletions release/pypi/prep_binary_for_pypi.sh
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,10 @@ for whl_file in "$@"; do
record_file="${dirname_dist_info_folder}/${basename_dist_info_folder/${version_with_suffix}/${version_no_suffix}}/RECORD"
if [[ -e $record_file ]]; then
echo "Generating new record file $record_file"
rm -f $record_file
: > "$record_file"
# generate records for folders in wheel
find * -type f | while read fname; do
echo $(make_wheel_record $fname) >>$record_file
make_wheel_record "$fname" >>"$record_file"
done
fi
)
Expand Down