mirror of
https://github.com/taigrr/wails.git
synced 2026-04-16 19:55:05 -07:00
Get it compiling
This commit is contained in:
committed by
Travis McLane
parent
c158fd369a
commit
852bbd148c
@@ -15,7 +15,7 @@ func packageProject(options *Options, platform string) error {
|
||||
var err error
|
||||
switch platform {
|
||||
case "linux":
|
||||
err = packageLinuxApplication(options)
|
||||
err = packageApplication(options)
|
||||
default:
|
||||
err = fmt.Errorf("packing not supported for %s yet", platform)
|
||||
}
|
||||
|
||||
6
v2/pkg/commands/build/packager_darwin.go
Normal file
6
v2/pkg/commands/build/packager_darwin.go
Normal file
@@ -0,0 +1,6 @@
|
||||
package build
|
||||
|
||||
func packageApplication(options *Options) error {
|
||||
// TBD
|
||||
return nil
|
||||
}
|
||||
@@ -17,7 +17,7 @@ func deleteLinuxPackFiles(appDirBase string) {
|
||||
os.RemoveAll(appDir)
|
||||
}
|
||||
|
||||
func packageLinuxApplication(options *Options) error {
|
||||
func packageApplication(options *Options) error {
|
||||
|
||||
// Check we have AppImage tools
|
||||
|
||||
|
||||
Reference in New Issue
Block a user