Get it compiling

This commit is contained in:
Lea Anthony
2020-09-11 20:39:48 +10:00
committed by Travis McLane
parent c158fd369a
commit 852bbd148c
9 changed files with 894 additions and 74 deletions

View File

@@ -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)
}

View File

@@ -0,0 +1,6 @@
package build
func packageApplication(options *Options) error {
// TBD
return nil
}

View File

@@ -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