-
Notifications
You must be signed in to change notification settings - Fork 12
Closed
Labels
Description
{
"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'
,与预期不符。