Skip to content

Commit

Permalink
devops: fixate diff algorithm to not rely on dev settings (#1663)
Browse files Browse the repository at this point in the history
  • Loading branch information
aslushnikov authored Apr 4, 2020
1 parent 3c01bf6 commit e9428b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion browser_patches/export.sh
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ fi

CURRENT_BRANCH=$(git rev-parse --abbrev-ref HEAD)
NEW_BASE_REVISION=$(git merge-base $REMOTE_BROWSER_UPSTREAM/$BASE_BRANCH $CURRENT_BRANCH)
NEW_DIFF=$(git diff --full-index $NEW_BASE_REVISION $CURRENT_BRANCH)
NEW_DIFF=$(git diff --diff-algorithm=myers --full-index $NEW_BASE_REVISION $CURRENT_BRANCH)
# Increment BUILD_NUMBER
BUILD_NUMBER=$(cat $EXPORT_PATH/BUILD_NUMBER)
BUILD_NUMBER=$((BUILD_NUMBER+1))
Expand Down

0 comments on commit e9428b6

Please sign in to comment.