This commit is contained in:
xushiwei
2024-04-25 01:41:44 +08:00
parent a2c6e5d7fc
commit 3f49fe9e98
5 changed files with 129 additions and 17 deletions

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
// Package build implements the llgo build command.
// Package build implements the "llgo build" command.
package build
import (
@@ -34,6 +34,7 @@ func init() {
func runCmd(cmd *base.Command, args []string) {
build.Do(args, &build.Config{
Mode: build.ModeBuild,
Mode: build.ModeBuild,
AppExt: build.DefaultAppExt(),
})
}