1
0
mirror of https://github.com/beego/bee.git synced 2024-06-02 16:13:26 +00:00

added arguments directly

This commit is contained in:
Ruben Cid 2019-04-16 11:51:06 +02:00
parent c3557a4449
commit 1964f11b30

View File

@ -501,7 +501,7 @@ func packApp(cmd *commands.Command, args []string) int {
args := []string{"build", "-o", binPath} args := []string{"build", "-o", binPath}
if len(buildArgs) > 0 { if len(buildArgs) > 0 {
args = append(args, strings.Fields(buildArgs)...) args = append(args, buildArgs)
} }
if verbose { if verbose {