We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d25aef0 + 86d731f commit 1ec17baCopy full SHA for 1ec17ba
pipeline/compilers/__init__.py
@@ -36,9 +36,10 @@ def _compile(input_path):
36
infile = self.storage.path(input_path)
37
except NotImplementedError:
38
infile = finders.find(input_path)
39
+ project_infile = finders.find(input_path)
40
outfile = compiler.output_path(infile, compiler.output_extension)
- outdated = compiler.is_outdated(infile, outfile)
41
- compiler.compile_file(infile, outfile,
+ outdated = compiler.is_outdated(project_infile, outfile)
42
+ compiler.compile_file(project_infile, outfile,
43
outdated=outdated, force=force,
44
**compiler_options)
45
0 commit comments