Compare commits

..

5 Commits

Author SHA1 Message Date
Lea Anthony
c93d01f80f fix: build-essential 2019-08-07 18:32:45 +10:00
Lea Anthony
eca750e895 feat: add gccversioncommand + windows support 2019-08-07 08:54:28 +10:00
Lea Anthony
6b78cdd838 Merge branch 'develop' into linux-db 2019-08-06 18:26:38 +10:00
Lea Anthony
2a3cb35dc1 linux db updates 2019-08-06 18:18:42 +10:00
Lea Anthony
af6b631b7b feat: refactor linux distro detection 2019-08-05 21:54:25 +10:00
2 changed files with 2 additions and 2 deletions

View File

@@ -18,7 +18,7 @@ func NewGitHubHelper() *GitHubHelper {
}
// GetVersionTags gets the list of tags on the Wails repo
// It returns a list of sorted tags in descending order
// It retuns a list of sorted tags in descending order
func (g *GitHubHelper) GetVersionTags() ([]*SemanticVersion, error) {
result := []*SemanticVersion{}

View File

@@ -67,7 +67,7 @@ func NewTemplateHelper() *TemplateHelper {
}
}
// IsValidTemplate returns true if the given template name resides on disk
// IsValidTemplate returns true if the given tempalte name resides on disk
func (t *TemplateHelper) IsValidTemplate(templateName string) bool {
pathToTemplate := filepath.Join(t.templateDir.fullPath, templateName)
return t.fs.DirExists(pathToTemplate)