Update workDir of e2e binary to eval symlinks

Due to a recent update to OS X, this is necessary
so that the correct working directory is saved,
so that methods like Path() on the e2e binary
will return the correct value
pull/26170/head
Pam Selle 6 years ago
parent a176aaa4da
commit 880546bd66

@ -37,6 +37,11 @@ func NewBinary(binaryPath, workingDir string) *binary {
panic(err)
}
tmpDir, err = filepath.EvalSymlinks(tmpDir)
if err != nil {
panic(err)
}
// For our purposes here we do a very simplistic file copy that doesn't
// attempt to preserve file permissions, attributes, alternate data
// streams, etc. Since we only have to deal with our own fixtures in

Loading…
Cancel
Save