mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-02 19:50:15 +08:00
13 lines
214 B
Go
13 lines
214 B
Go
package commands
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/wailsapp/wails/v3/internal/flags"
|
|
)
|
|
|
|
func Build(_ *flags.Build) error {
|
|
os.Args = []string{"wails", "task", "build"}
|
|
return RunTask(&RunTaskOptions{}, []string{})
|
|
}
|