mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-05 21:45:06 +00:00
[gen-ragel-artifacts] Fail if ragel failed
This commit is contained in:
parent
2edab536bd
commit
5a03844914
1 changed files with 3 additions and 1 deletions
|
@ -19,7 +19,9 @@ outdir = os.path.dirname (OUTPUT)
|
|||
shutil.copy (INPUT, outdir)
|
||||
rl = os.path.basename (INPUT)
|
||||
hh = rl.replace ('.rl', '.hh')
|
||||
subprocess.Popen (ragel.split() + ['-e', '-F1', '-o', hh, rl], cwd=outdir).wait ()
|
||||
ret = subprocess.Popen (ragel.split() + ['-e', '-F1', '-o', hh, rl], cwd=outdir).wait ()
|
||||
if ret:
|
||||
sys.exit (ret)
|
||||
|
||||
# copy it also to src/
|
||||
shutil.copyfile (os.path.join (outdir, hh), os.path.join (CURRENT_SOURCE_DIR, hh))
|
||||
|
|
Loading…
Add table
Reference in a new issue