[Fontconfig] fontconfig: Branch 'master'

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Fri Jan 15 12:03:48 UTC 2021


 src/cutout.py |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 4b142e924131043bd4ea4629b9e4c23175e55daf
Author: Tim-Philipp Müller <tim at centricular.com>
Date:   Thu Dec 31 15:04:10 2020 +0000

    meson: error out in script if gperf preprocessing failed

diff --git a/src/cutout.py b/src/cutout.py
index 6fa55a3..96cafd2 100644
--- a/src/cutout.py
+++ b/src/cutout.py
@@ -12,7 +12,7 @@ if __name__== '__main__':
     print (args[0].output)
 
     cpp = args[1]
-    ret = subprocess.run(cpp + [args[0].input], stdout=subprocess.PIPE)
+    ret = subprocess.run(cpp + [args[0].input], stdout=subprocess.PIPE, check=True)
 
     stdout = ret.stdout.decode('utf8')
 


More information about the Fontconfig mailing list