Ports: Force full-length file indices when formatting patches
This keeps file index lengths from being dependent on internals of the repository.
This commit is contained in:
parent
72c059535e
commit
453323f3c1
Notes:
sideshowbarker
2024-07-17 06:52:49 +09:00
Author: https://github.com/timschumi Commit: https://github.com/SerenityOS/serenity/commit/453323f3c1 Pull-request: https://github.com/SerenityOS/serenity/pull/15268 Reviewed-by: https://github.com/alimpfard ✅ Reviewed-by: https://github.com/gmta
1 changed files with 1 additions and 1 deletions
|
@ -826,7 +826,7 @@ do_dev() {
|
|||
if [ "$first_hash" != "$current_hash" ]; then
|
||||
>&2 echo "Note: Regenerating patches as there are some commits in the port repo (started at $first_hash, now is $current_hash)"
|
||||
rm -fr "${PORT_META_DIR}"/patches/*.patch
|
||||
git -C "$git_repo" format-patch --no-numbered --zero-commit --no-signature "$first_hash" -o "$(realpath "${PORT_META_DIR}/patches")"
|
||||
git -C "$git_repo" format-patch --no-numbered --zero-commit --no-signature --full-index "$first_hash" -o "$(realpath "${PORT_META_DIR}/patches")"
|
||||
do_generate_patch_readme
|
||||
fi
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue