fix typo in previous commit

This commit is contained in:
Ryan Richard
2026-03-06 08:53:56 -08:00
parent cd1b52231f
commit 5beba016ff

View File

@@ -56,7 +56,7 @@ else
# Fetch all the remote branches so we can use one of them.
git fetch https_origin
# Check if our local changes are different from what is already on the remote branch.
stagedAndUnstagedDiffs=$(git diff --no-pager https_origin/"$BRANCH")
stagedAndUnstagedDiffs=$(git --no-pager diff https_origin/"$BRANCH")
if [[ "$stagedAndUnstagedDiffs" == "" ]]; then
# The changes that we made locally are the same as what is already on the branch.
echo "Local git changes are the same as what is already on remote branch $BRANCH. Done."