Skip to content

Commit

Permalink
add log (#2693)
Browse files Browse the repository at this point in the history
  • Loading branch information
msyyc committed Jul 12, 2024
1 parent 6e93675 commit 15825c5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions eng/scripts/sdk_regenerate.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from pathlib import Path
import subprocess
from datetime import datetime
from subprocess import check_call, check_output
from subprocess import check_call, check_output, call
import argparse
import logging
import json
Expand Down Expand Up @@ -72,7 +72,8 @@ def checkout_branch(branch: str, sync_main: bool = False):
check_call(f"git fetch azure-sdk {branch}", shell=True)
check_call(f"git checkout {branch}", shell=True)
if sync_main:
check_call(f"git pull azure-sdk main:{branch} --force", shell=True)
logging.info(f"sync {branch} with main branch")
call(f"git pull azure-sdk main:{branch} --force", shell=True)
except Exception:
check_call(f"git checkout -b {branch}", shell=True)

Expand Down

0 comments on commit 15825c5

Please sign in to comment.