mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-06 17:01:33 +08:00
Fix module path for non-modified repo
This commit is contained in:
parent
54bf8c1142
commit
62b3775e2f
@ -1,12 +1,12 @@
|
|||||||
package debug
|
package debug
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/samber/lo"
|
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"runtime"
|
"runtime"
|
||||||
)
|
"runtime/debug"
|
||||||
|
|
||||||
import "runtime/debug"
|
"github.com/samber/lo"
|
||||||
|
)
|
||||||
|
|
||||||
// Why go doesn't provide this as a map already is beyond me.
|
// Why go doesn't provide this as a map already is beyond me.
|
||||||
var buildSettings = map[string]string{}
|
var buildSettings = map[string]string{}
|
||||||
@ -20,7 +20,7 @@ func init() {
|
|||||||
buildSettings = lo.Associate(buildInfo.Settings, func(setting debug.BuildSetting) (string, string) {
|
buildSettings = lo.Associate(buildInfo.Settings, func(setting debug.BuildSetting) (string, string) {
|
||||||
return setting.Key, setting.Value
|
return setting.Key, setting.Value
|
||||||
})
|
})
|
||||||
if isLocalBuild() {
|
if isLocalBuild() || buildInfo.Path == "" {
|
||||||
modulePath := RelativePath("..", "..", "..")
|
modulePath := RelativePath("..", "..", "..")
|
||||||
LocalModulePath, _ = filepath.Abs(modulePath)
|
LocalModulePath, _ = filepath.Abs(modulePath)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user