From 49a10de343da8ead78070b492eb34252e71e3639 Mon Sep 17 00:00:00 2001 From: Ozzy Date: Thu, 29 Sep 2022 10:49:43 +0200 Subject: [PATCH] swapped the project_infile path with the infile path on the compile_file function --- pipeline/compilers/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipeline/compilers/__init__.py b/pipeline/compilers/__init__.py index f6978a15..c424e470 100644 --- a/pipeline/compilers/__init__.py +++ b/pipeline/compilers/__init__.py @@ -35,7 +35,7 @@ def _compile(input_path): project_infile = finders.find(input_path) outfile = compiler.output_path(infile, compiler.output_extension) outdated = compiler.is_outdated(project_infile, outfile) - compiler.compile_file(project_infile, outfile, + compiler.compile_file(infile, outfile, outdated=outdated, force=force, **compiler_options)