common/compiler: support relative path to solc

This commit is contained in:
Rémy Roy 2016-05-24 17:02:00 -04:00
parent 5bcdbb1ce4
commit 5eb60a6da2
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