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 fc76877 commit 3b4aab8Copy full SHA for 3b4aab8
solc/main.py
@@ -69,6 +69,10 @@ def _parse_compiler_output(stdoutdata):
69
sources = output['sources']
70
71
for source, data in contracts.items():
72
+ if("Windows" in platform.system()):
73
+ drive_path = source.split(':')[0]
74
+ drive_path + ":\\"+source.split(':')[1].replace("\\", "\\\\")
75
+
76
data['abi'] = json.loads(data['abi'])
77
data['ast'] = sources[source.split(':')[0]]['AST']
78
0 commit comments