app: drop Go 1.12 support

Signed-off-by: Elias Naur <mail@eliasnaur.com>
This commit is contained in:
Elias Naur
2020-06-13 15:02:38 +02:00
parent 8a5f3f3dd5
commit fda6fbcf84
2 changed files with 1 additions and 13 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
// SPDX-License-Identifier: Unlicense OR MIT
// +build !android,go1.13
// +build !android
package app
-12
View File
@@ -1,12 +0,0 @@
// SPDX-License-Identifier: Unlicense OR MIT
// +build !android,!go1.13
package app
import "os"
func dataDir() (string, error) {
// Use a quick workaround until we can require go 1.13.
return os.UserHomeDir()
}