mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-02 18:42:23 +08:00
Refactor recent mac updates (#2419)
This commit is contained in:
parent
9b35926789
commit
76371fcb27
@ -262,12 +262,10 @@ func execBuildApplication(builder Builder, options *Options) (string, error) {
|
||||
|
||||
// Compile the application
|
||||
printBulletPoint("Compiling application: ")
|
||||
outputFile := builder.OutputFilename(options)
|
||||
options.ProjectData.OutputFilename = outputFile
|
||||
options.ProjectData.Name = outputFile
|
||||
options.ProjectData.Info.ProductName = outputFile
|
||||
|
||||
if options.Platform == "darwin" && options.Arch == "universal" {
|
||||
if options.Platform == "darwin" {
|
||||
outputFile := builder.OutputFilename(options)
|
||||
if options.Arch == "universal" {
|
||||
amd64Filename := outputFile + "-amd64"
|
||||
arm64Filename := outputFile + "-arm64"
|
||||
|
||||
@ -313,6 +311,11 @@ func execBuildApplication(builder Builder, options *Options) (string, error) {
|
||||
}
|
||||
options.ProjectData.OutputFilename = outputFile
|
||||
options.CompiledBinary = filepath.Join(options.BinDirectory, outputFile)
|
||||
} else {
|
||||
options.ProjectData.OutputFilename = outputFile
|
||||
options.ProjectData.Name = outputFile
|
||||
options.ProjectData.Info.ProductName = outputFile
|
||||
}
|
||||
} else {
|
||||
err := builder.CompileProject(options)
|
||||
if err != nil {
|
||||
|
Loading…
Reference in New Issue
Block a user