Changeset 265023 in webkit


Ignore:
Timestamp:
Jul 28, 2020 4:56:12 PM (4 years ago)
Author:
commit-queue@webkit.org
Message:

Pause during ANGLE roll script after rebasing and before deleting temporary Git repo
https://bugs.webkit.org/show_bug.cgi?id=212717

Patch by Kenneth Russell <kbr@chromium.org> on 2020-07-28
Reviewed by Dean Jackson.

Give the user the opportunity to manually examine the changes
relative to upstream ANGLE, and to undo any accidental or
undesired ones, before finishing the roll.

  • update-angle.sh:
Location:
trunk/Source/ThirdParty/ANGLE
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/ThirdParty/ANGLE/ChangeLog

    r264746 r265023  
     12020-07-28  Kenneth Russell  <kbr@chromium.org>
     2
     3        Pause during ANGLE roll script after rebasing and before deleting temporary Git repo
     4        https://bugs.webkit.org/show_bug.cgi?id=212717
     5
     6        Reviewed by Dean Jackson.
     7
     8        Give the user the opportunity to manually examine the changes
     9        relative to upstream ANGLE, and to undo any accidental or
     10        undesired ones, before finishing the roll.
     11
     12        * update-angle.sh:
     13
    1142020-07-22  Conrad Shultz  <conrad_shultz@apple.com>
    215
  • trunk/Source/ThirdParty/ANGLE/update-angle.sh

    r259482 r265023  
    1616    cd "$ANGLE_DIR"
    1717    echo
    18     echo "Regenerating changes.diff"
     18    echo "Regenerating changes.diff."
     19    git diff origin/master --diff-filter=a > changes.diff
     20    echo "Pausing to let you examine changes.diff, and the files in"
     21    echo "Source/ThirdParty/ANGLE relative to upstream, using git tools."
     22    echo "At this point you may undo any undesired changes that you see in"
     23    echo "changes.diff."
     24    echo "To see the current changes relative to upstream ANGLE, run the"
     25    echo "following command in Source/ThirdParty/ANGLE:"
     26    echo "    git diff origin/master --diff-filter=a"
     27    echo "changes.diff will be regenerated again when this script proceeds;"
     28    echo "it isn't necessary to do it manually."
     29    read -p "Press ENTER to continue: "
     30    echo "Regenerating changes.diff again."
    1931    git diff origin/master --diff-filter=a > changes.diff
    2032    rm -rf .git
     
    4456echo "This will clobber any changes you have made in:"
    4557echo "$ANGLE_DIR"
    46 read -p "Are you sure? [y/N] " -n 1 -r
     58read -p "Are you sure? [y/N] "
    4759echo
    4860if [[ ! $REPLY =~ ^[Yy]$ ]]; then
Note: See TracChangeset for help on using the changeset viewer.