File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -31,16 +31,16 @@ def _compile(input_path):
31
31
for compiler in self .compilers :
32
32
compiler = compiler (verbose = self .verbose , storage = self .storage )
33
33
if compiler .match_file (input_path ):
34
- output_path = compiler .output_path (input_path , compiler .output_extension )
35
34
try :
36
35
infile = self .storage .path (input_path )
37
36
except NotImplementedError :
38
37
infile = finders .find (input_path )
39
38
outfile = compiler .output_path (infile , compiler .output_extension )
40
- outdated = compiler .is_outdated (input_path , output_path )
39
+ outdated = compiler .is_outdated (infile , outfile )
41
40
compiler .compile_file (infile , outfile ,
42
41
outdated = outdated , force = force )
43
- return output_path
42
+
43
+ return compiler .output_path (input_path , compiler .output_extension )
44
44
else :
45
45
return input_path
46
46
You can’t perform that action at this time.
0 commit comments