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.
1 parent fa6aa61 commit f3fa679Copy full SHA for f3fa679
pipeline/compilers/__init__.py
@@ -40,12 +40,8 @@ def _compile(input_path):
40
infile = finders.find(input_path)
41
outfile = self.output_path(infile, compiler.output_extension)
42
outdated = compiler.is_outdated(input_path, output_path)
43
- try:
44
- compiler.compile_file(quote(infile), quote(outfile),
45
- outdated=outdated, force=force)
46
- except CompilerError:
47
- if not self.storage.exists(output_path) or settings.DEBUG:
48
- raise
+ compiler.compile_file(quote(infile), quote(outfile),
+ outdated=outdated, force=force)
49
return output_path
50
else:
51
return input_path
0 commit comments