mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-07 13:50:47 +08:00

* Support for linux deb,rpm,arch linux packager packaging * remove optional tasks from linux:package task CHANGELOG.md * Update Taskfile.linux.yml * Integrated nfpm into CLI. Fixed task update. * package tool fixes and add bundle name field empty name guard * add linux depdencies * Add some docs * Fixed tests. Updated task to latest. * Update v3/internal/commands/tool_package.go Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> * Remove doctor references to nfpm --------- Co-authored-by: Lea Anthony <lea.anthony@gmail.com> Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
11 lines
434 B
Go
11 lines
434 B
Go
package flags
|
|
|
|
// ToolPackage represents the options for the package command
|
|
type ToolPackage struct {
|
|
Common
|
|
|
|
Format string `name:"format" description:"Package format to generate (deb, rpm, archlinux)" default:"deb"`
|
|
ExecutableName string `name:"name" description:"Name of the executable to package" default:"myapp"`
|
|
ConfigPath string `name:"config" description:"Path to the package configuration file" default:""`
|
|
}
|