summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-11-14 11:07:04 +0100
committerGitHub <noreply@github.com>2021-11-14 11:07:04 +0100
commit7f256392a14abd929f67a1fa1831977adf1b1225 (patch)
treec9dfec2544f44c4d5295b924a90e7982344964ff
parentMerge pull request #7272 from behunin/the-courteous-logger (diff)
parentci: Print traceback on patch merge failure (diff)
downloadyuzu-7f256392a14abd929f67a1fa1831977adf1b1225.tar
yuzu-7f256392a14abd929f67a1fa1831977adf1b1225.tar.gz
yuzu-7f256392a14abd929f67a1fa1831977adf1b1225.tar.bz2
yuzu-7f256392a14abd929f67a1fa1831977adf1b1225.tar.lz
yuzu-7f256392a14abd929f67a1fa1831977adf1b1225.tar.xz
yuzu-7f256392a14abd929f67a1fa1831977adf1b1225.tar.zst
yuzu-7f256392a14abd929f67a1fa1831977adf1b1225.zip
-rw-r--r--.ci/scripts/merge/apply-patches-by-label.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/.ci/scripts/merge/apply-patches-by-label.py b/.ci/scripts/merge/apply-patches-by-label.py
index 43ed74d7f..b2e430ac7 100644
--- a/.ci/scripts/merge/apply-patches-by-label.py
+++ b/.ci/scripts/merge/apply-patches-by-label.py
@@ -1,7 +1,7 @@
# Download all pull requests as patches that match a specific label
# Usage: python download-patches-by-label.py <Label to Match> <Root Path Folder to DL to>
-import requests, sys, json, urllib3.request, shutil, subprocess, os
+import requests, sys, json, urllib3.request, shutil, subprocess, os, traceback
tagline = sys.argv[2]
@@ -33,4 +33,5 @@ try:
for i in range(1,30):
do_page(i)
except:
+ traceback.print_exc(file=sys.stdout)
sys.exit(-1)