Compare commits

..

No commits in common. "864d7b3dc229614b299f4f878c749cdfc749147b" and "fa5a4ecc3be0d9b790ecdaa12eb25f2b6978f542" have entirely different histories.

2 changed files with 2 additions and 2 deletions

View file

@ -22,7 +22,7 @@ import (
const (
name string = "agedit"
usage string = "Edit age encrypted files with your $EDITOR"
version string = "0.2.3"
version string = "0.2.2"
help_template string = `NAME:
{{.Name}} {{if .Version}}v{{.Version}}{{end}} - {{.Usage}}

2
pkg/env/env.go vendored
View file

@ -67,7 +67,7 @@ func GetDataDir(appname string) string {
if datahome := os.Getenv("XDG_DATA_HOME"); datahome != "" {
datadir = datahome
} else {
datadir = make_path(os.Getenv("HOME"), ".local", "share")
datadir = make_path(os.Getenv("HOME"), "local", "share")
}
}