summaryrefslogtreecommitdiff
path: root/support
diff options
context:
space:
mode:
Diffstat (limited to 'support')
-rw-r--r--support/asymptote/__main__.py3
-rw-r--r--support/lib/util.py4
2 files changed, 5 insertions, 2 deletions
diff --git a/support/asymptote/__main__.py b/support/asymptote/__main__.py
index 5c6f67a..91902dd 100644
--- a/support/asymptote/__main__.py
+++ b/support/asymptote/__main__.py
@@ -17,6 +17,9 @@ def main(in_path, out_path):
# Asymptote creates A LOT of temp files (presumably when invoking LaTeX) and leaves some of them behind. Thus we run asymptote in a temporary directory.
_asymptote(absolute_in_path, 'out', os.path.dirname(absolute_in_path), temp_dir)
+ if not os.path.exists(temp_out_path):
+ raise util.UserError('Asymptote did not generate a PDF file for input file {}.', in_path)
+
shutil.copyfile(temp_out_path, out_path)
else:
raise Exception('Unknown file type: {}'.format(out_suffix))
diff --git a/support/lib/util.py b/support/lib/util.py
index 915e33c..e343b73 100644
--- a/support/lib/util.py
+++ b/support/lib/util.py
@@ -35,7 +35,7 @@ def TemporaryDirectory():
shutil.rmtree(dir)
-def command(args, remove_env = [], set_env = { }):
+def command(args, remove_env = [], set_env = { }, working_dir = None):
env = dict(os.environ)
for i in remove_env:
@@ -45,7 +45,7 @@ def command(args, remove_env = [], set_env = { }):
env[k] = v
try:
- process = subprocess.Popen(args, env = env)
+ process = subprocess.Popen(args, env = env, cwd = working_dir)
process.wait()
except OSError as e:
raise UserError('Error running {}: {}', args[0], e)