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)