Commit de1831b6 authored by Rémy Roy's avatar Rémy Roy

common/compiler: fix path problem with filepath.Glob on Windows

parent d45f01d5
...@@ -157,7 +157,7 @@ func (sol *Solidity) Compile(source string) (map[string]*Contract, error) { ...@@ -157,7 +157,7 @@ func (sol *Solidity) Compile(source string) (map[string]*Contract, error) {
return nil, fmt.Errorf("solc: %v\n%s", err, string(stderr.Bytes())) return nil, fmt.Errorf("solc: %v\n%s", err, string(stderr.Bytes()))
} }
// Sanity check that something was actually built // Sanity check that something was actually built
matches, _ := filepath.Glob(wd + "/*\\.bin*") matches, _ := filepath.Glob(filepath.Join(wd, "*.bin*"))
if len(matches) < 1 { if len(matches) < 1 {
return nil, fmt.Errorf("solc: no build results found") return nil, fmt.Errorf("solc: no build results found")
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment