test
Some checks failed
CI / Lint (pull_request) Failing after 54s
CI / Test (pull_request) Successful in 2m3s
CI / Build (pull_request) Successful in 2m49s

This commit is contained in:
2024-05-20 00:35:08 -05:00
parent 35d888ec62
commit 7863c53280

View File

@@ -18,8 +18,6 @@ import (
"gopkg.in/yaml.v3"
)
var Version = ""
type Config struct {
ModProfilesDirectory string `yaml:"mod_profiles_dir"`
GameModsDirectory string `yaml:"game_mods_dir"`
@@ -189,6 +187,6 @@ func makeIFunc(profile, archive string, parent fyne.Window) func() {
return
}
dialog.NewInformation("Success", fmt.Sprintf("filinked files from %s to %s", filepath.Base(profile), archive), parent).Show()
dialog.NewInformation("Success", fmt.Sprintf("linked files from %s to %s", filepath.Base(profile), archive), parent).Show()
}
}