fix(git): avoid duplicate gh repo flag in pr-diff

This commit is contained in:
Jarvis
2026-05-25 14:20:13 -05:00
parent a70159d350
commit 6422c65961

View File

@@ -63,7 +63,7 @@ fi
if [[ "$PLATFORM" == "github" ]]; then if [[ "$PLATFORM" == "github" ]]; then
if [[ -n "$OUTPUT_FILE" ]]; then if [[ -n "$OUTPUT_FILE" ]]; then
gh pr diff "$PR_NUMBER" --repo "$REPO_INFO" --repo "$REPO_INFO" > "$OUTPUT_FILE" gh pr diff "$PR_NUMBER" --repo "$REPO_INFO" > "$OUTPUT_FILE"
else else
gh pr diff "$PR_NUMBER" --repo "$REPO_INFO" gh pr diff "$PR_NUMBER" --repo "$REPO_INFO"
fi fi