From 78b598f976c15011f898c987a87775d4e5beaa04 Mon Sep 17 00:00:00 2001 From: Christian Meesters Date: Thu, 25 Apr 2024 12:07:22 +0200 Subject: [PATCH] feat: render script now accepts relative path to master --- render | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/render b/render index dc4b52b..358913c 100755 --- a/render +++ b/render @@ -206,6 +206,10 @@ if __name__ == "__main__": ) args = parser.parse_args() + # the master tex needs to be without the 'slides' path, because + # on the tempfs, the relative path work without + args.master_tex = os.path.basename(args.master_tex) + logger = logging.getLogger(__name__) data = parse_config(args.configfile)