3
0
Fork 0
mirror of https://github.com/tj-actions/changed-files synced 2024-12-16 19:27:39 +00:00

Update diff-sha.sh

This commit is contained in:
Tonye Jack 2022-12-14 08:17:48 -07:00 committed by GitHub
parent bb675e1715
commit a1a2be24bd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -253,10 +253,10 @@ else
echo "Fetching $i commits..."
# shellcheck disable=SC2086
git fetch $EXTRA_ARGS -u --progress --deepen="$i" origin +"$GITHUB_REF":refs/remotes/origin/"$CURRENT_BRANCH"
git fetch $EXTRA_ARGS -u --progress --depth="$i" origin +"$GITHUB_REF":refs/remotes/origin/"$CURRENT_BRANCH" 1>/dev/null 2>&1
done
if ((i >= max_depth)); then
if ((i > max_depth)); then
echo "::error::Unable to locate a common ancestor between $TARGET_BRANCH and $CURRENT_BRANCH with: $PREVIOUS_SHA$DIFF$CURRENT_SHA"
exit 1
fi