Skip to content

Commit 4df9b29

Browse files
committed
squash
1 parent 043d51e commit 4df9b29

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

.github/workflows/process-git-request.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,6 @@ def process_git_request(fname, target_branch, source_branch, prj_dir):
1919
file = open(fname, "w")
2020
working_dir = prj_dir
2121
os.chdir(working_dir)
22-
git_cmd = f"git fetch --all"
23-
gitbr_out, gitbr_err = subprocess.Popen(git_cmd, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE, universal_newlines=True).communicate()
24-
if gitbr_err:
25-
print(f"git fetch --all returned error {gitbr_err}")
2622
git_cmd = f"git branch"
2723
gitbr_out, gitbr_err = subprocess.Popen(git_cmd, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE, universal_newlines=True).communicate()
2824
if gitbr_err:

0 commit comments

Comments
 (0)