Merge "Help devcam find itself correctly on OS X"

This commit is contained in:
Mathieu Lonjaret 2014-11-07 14:57:44 +00:00 committed by Gerrit Code Review
commit c03a0f5650
1 changed files with 2 additions and 1 deletions

View File

@ -23,6 +23,7 @@ import (
"errors"
"fmt"
"os"
"os/exec"
"runtime"
"syscall"
)
@ -50,7 +51,7 @@ func SelfPath() (string, error) {
case "darwin":
// TODO(mpl): maybe do the right thing for darwin too, but that may require changes to runtime.
// See https://codereview.appspot.com/6736069/
return os.Args[0], nil
return exec.LookPath(os.Args[0])
}
return "", errors.New("SelfPath not implemented for " + runtime.GOOS)
}