ecruz-te 2 년 전
부모
커밋
b8fb8f5e3a
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      toolset/github_actions/github_actions_diff.py

+ 1 - 1
toolset/github_actions/github_actions_diff.py

@@ -76,7 +76,7 @@ changes = clean_output(
         'bash', '-c',
         'bash', '-c',
         'git --no-pager diff --name-only {0} $(git merge-base {0} {1})'
         'git --no-pager diff --name-only {0} $(git merge-base {0} {1})'
             .format(curr_branch, diff_target)
             .format(curr_branch, diff_target)
-    ]))
+    ], text=True))
 print("Determining what to run based on the following file changes: \n{!s}"
 print("Determining what to run based on the following file changes: \n{!s}"
     .format('\n'.join(changes.split('\n')[0:10])))
     .format('\n'.join(changes.split('\n')[0:10])))
 if len(changes.split('\n')) > 10:
 if len(changes.split('\n')) > 10: