Merge pull request #2613 from remyroy/rel-path-solc

common/compiler: support relative path to solc
This commit is contained in:
Jeffrey Wilcke 2016-05-25 09:47:54 +02:00
commit a476aabf1a
1 changed files with 0 additions and 1 deletions

View File

@ -149,7 +149,6 @@ func (sol *Solidity) Compile(source string) (map[string]*Contract, error) {
compilerOptions := strings.Join(params, " ")
cmd := exec.Command(sol.solcPath, params...)
cmd.Dir = wd
cmd.Stdin = strings.NewReader(source)
cmd.Stderr = stderr