mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-03 17:41:24 +08:00
10 lines
201 B
Go
10 lines
201 B
Go
//go:build linux
|
|
// +build linux
|
|
|
|
package build
|
|
|
|
// PostCompilation is called after the compilation step, if successful
|
|
func (d *DesktopBuilder) PostCompilation(options *Options) error {
|
|
return nil
|
|
}
|