Skip to content

Commit

Permalink
squash
Browse files Browse the repository at this point in the history
  • Loading branch information
gvrose8192 committed Jan 15, 2025
1 parent 043d51e commit 4df9b29
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/process-git-request.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,6 @@ def process_git_request(fname, target_branch, source_branch, prj_dir):
file = open(fname, "w")
working_dir = prj_dir
os.chdir(working_dir)
git_cmd = f"git fetch --all"
gitbr_out, gitbr_err = subprocess.Popen(git_cmd, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE, universal_newlines=True).communicate()
if gitbr_err:
print(f"git fetch --all returned error {gitbr_err}")
git_cmd = f"git branch"
gitbr_out, gitbr_err = subprocess.Popen(git_cmd, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE, universal_newlines=True).communicate()
if gitbr_err:
Expand Down

0 comments on commit 4df9b29

Please sign in to comment.