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

This commit is contained in:
Rémy Roy 2016-03-04 14:50:56 -05:00
parent d45f01d5f7
commit de1831b6e9
1 changed files with 1 additions and 1 deletions

View File

@ -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()))
}
// Sanity check that something was actually built
matches, _ := filepath.Glob(wd + "/*\\.bin*")
matches, _ := filepath.Glob(filepath.Join(wd, "*.bin*"))
if len(matches) < 1 {
return nil, fmt.Errorf("solc: no build results found")
}