llgo install: /appName

This commit is contained in:
xushiwei
2024-04-25 00:53:42 +08:00
parent cbaf9e21b2
commit a2c6e5d7fc
3 changed files with 62 additions and 15 deletions

View File

@@ -33,5 +33,7 @@ func init() {
}
func runCmd(cmd *base.Command, args []string) {
build.Do(args, build.ModeBuild)
build.Do(args, &build.Config{
Mode: build.ModeBuild,
})
}

View File

@@ -33,5 +33,6 @@ func init() {
}
func runCmd(cmd *base.Command, args []string) {
build.Do(args, build.ModeInstall)
conf := build.NewDefaultConf(build.ModeInstall)
build.Do(args, conf)
}