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 ab0555f commit a858c74Copy full SHA for a858c74
tools/Python/mcrun/mccode.py
@@ -139,7 +139,7 @@ def x_path(file):
139
self.binpath = './%s.%s' % (self.name, mccode_config.platform['EXESUFFIX'])
140
141
# Check if self.path is .exe or .out binary, if so - skip ahead to execution
142
- if options.force_compile or not pathlib.Path(self.path).suffix==mccode_config.platform['EXESUFFIX']:
+ if pathlib.Path(self.path).suffix==mccode_config.platform['EXESUFFIX']:
143
return
144
145
# Check if c-code should be regenerated by comparing to instr timestamp
0 commit comments