Rafał Jęczalik
Rafał Jęczalik
> But it does not work at all on Windows 7 x64 :( Do you have any error messages, screencasts etc. which demonstrate the problem?
@tssajo Thanks, it's enough for me.
@tssajo No, sorry - I was overwhelmed with other activities and in the meantime I lost access to my only windows box. Maybe you could troubleshoot this for me? -...
Typo - should be: ```go fmt.Println(path, canwrite, fi.IsDir, fi.Mode().IsRegular(), IsExecutable(path), IsBinary(path)) ```
> However, the Go 1.10 build command does not place the gobin program into my bin directory Try `go install`.
Oh, please ensure you install `.\cmd\gobin` - this is where main lives.
> Any ideas? See my second comment, run `go install` in `...\rjeczalik\bin\cmd\gobin`.
It looks for every executable file in %PATH%.
Oh sorry, another typo - it's a middle of a night for me. Could you try this line instead: ``` fmt.Println(path, canwrite, fi.IsDir(), fi.Mode().IsRegular(), IsExecutable(path), IsBinary(path)) ```
Ok, so file modes are ok, most likely the thing that fails is reading import path from a binary. Could you: - add the line below [here](https://github.com/rjeczalik/bin/blob/master/bin.go#L366) ```go fmt.Printf("which.NewExec(%q) failed:...