Kei Arima
Kei Arima
## WHAT Change main.version from const to var. If applied, this commit will fix #83 Here's the Github release that includes this commit. https://github.com/kei2100/tfnotify/releases/tag/v0.7.1-beta.1 ```bash $ wget https://github.com/kei2100/tfnotify/releases/download/v0.7.1-beta.1/tfnotify_darwin_amd64.tar.gz $ tar...
## WHAT I got tfnotify binary from GitHub Releases, But `tfnotify --version` option doesn't seems to work. ```bash $ wget https://github.com/mercari/tfnotify/releases/download/v0.7.0/tfnotify_darwin_amd64.tar.gz $ tar xvf tfnotify_darwin_amd64.tar.gz $ ./tfnotify --version tfnotify version...
- [x] I have looked at the documentation [here](https://pkg.go.dev/github.com/go-playground/validator/v10#section-documentation) first? - [x] I have looked at the examples provided that may showcase my question [here](/_examples)? ### Package version eg. v9,...
## Mandatory **Where is the source code for the plugin?** https://github.com/kei2100/protoc-gen-marshal-zap/tree/master/plugin/protoc-gen-marshal-zap ## Optional **Does the plugin have a valid semver version?** v0.3.0 https://github.com/kei2100/protoc-gen-marshal-zap/releases **Does this plugin have runtime dependencies?** No...
空の値で定義される環境変数 FOO を `x{{ env "FOO" "DEFAULT" }}x` で展開した場合、`xx` とは出力されず、FOO が未定義の場合と同様に `xDEFAULTx` となるようです。 `env` による環境変数の取得には os.Getenv が使用されており、 https://github.com/kayac/go-config/blob/cec48758837572cf279afc32d9b613962aae4dfd/config.go#L184 空の値で定義される場合と未定義の場合とで区別なく扱われるためだと認識していますが、 こちらは go-config の意図通りの挙動でしょうか。 以下再現コードになります。 https://play.golang.org/p/XUjO2XkD8pS