-
-
Notifications
You must be signed in to change notification settings - Fork 129
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Not Working in intellij 2019.1.1 for golang projects #83
Comments
Thanks for reporting the issue! How exactly it doesn't work? It crashes with an error or you don't see env vars set? |
Thanks for your reply. |
I hope we will be able to figure it out easier. Also, do I understand correctly that you use |
Hello, what command line did you use to check the env veriables is useful? |
It is in the screenshot above - I used a simple program that just prints all environment variables: package main
import (
"fmt"
"os"
)
func main() {
for _, e := range os.Environ() {
fmt.Println(e)
}
} |
I am using intellij with go module |
Can you try this program? package main
import (
"fmt"
"os"
"strings"
)
func main() {
for _, e := range os.Environ() {
if strings.HasPrefix(e, "BOARDCHAIN_") {
fmt.Println(e)
}
}
} Also, maybe you can make a screenshot similar to one that I posted - that would combine EnvFile configuration and the output on the same screen? |
ok, thanks, let me update |
I've seen this error reported once in the past but wasn't able to reproduce it so far. I also pushed an update Please let me know if you would be able to make it work after all. |
ok, thanks |
Can you confirm if it works for you? |
Given no reply I assume everything works fine. Please feel free to re-open if that's not the case. |
Hello, thanks for your asking. That's working, but sometimes not working |
I set all like as guide, but not working for golang
The text was updated successfully, but these errors were encountered: