We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
{ "version": "0.4.0", "tool": "go build -gcflags='-N -l'", "importpath": "github.com/voidint/gbb/build", "variables": [ { "variable": "Date", "value": "{{.Date}}" }, { "variable": "Commit", "value": "{{.GitCommit}}" } ] }
若使用以上的配置文件,那么无法进行正常的编译。
strings.Fields("go build -gcflags='-N -l'")将拆分成go、build、-gcflags='-N、-l',与预期不符。
strings.Fields("go build -gcflags='-N -l'")
go
build
-gcflags='-N
-l'
The text was updated successfully, but these errors were encountered:
96d5628
No branches or pull requests
若使用以上的配置文件,那么无法进行正常的编译。
strings.Fields("go build -gcflags='-N -l'")
将拆分成go
、build
、-gcflags='-N
、-l'
,与预期不符。The text was updated successfully, but these errors were encountered: