From 5beba016ffdda82981fafd677fec900b4c3c0a13 Mon Sep 17 00:00:00 2001 From: Ryan Richard Date: Fri, 6 Mar 2026 08:53:56 -0800 Subject: [PATCH] fix typo in previous commit --- pipelines/shared-tasks/create-or-update-pr/task.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipelines/shared-tasks/create-or-update-pr/task.sh b/pipelines/shared-tasks/create-or-update-pr/task.sh index 81c313038..69ce87a8f 100755 --- a/pipelines/shared-tasks/create-or-update-pr/task.sh +++ b/pipelines/shared-tasks/create-or-update-pr/task.sh @@ -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."