réplica de
https://github.com/quitesimpleorg/hs9001.git
sincronizado 2024-11-25 03:32:36 +01:00
databaseLocation(): Consider env variable override
Allow overriding databaseLocation by an environment variable. Closes: #1
Este cometimento está contido em:
ascendente
1d991b50fc
cometimento
79a26e2aa1
4
main.go
4
main.go
@ -14,6 +14,10 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
func databaseLocation() string {
|
func databaseLocation() string {
|
||||||
|
envOverride := os.Getenv("HS9001_DB_PATH")
|
||||||
|
if envOverride != "" {
|
||||||
|
return envOverride
|
||||||
|
}
|
||||||
return filepath.Join(xdgOrFallback("XDG_DATA_HOME", filepath.Join(os.Getenv("HOME"), ".local/share")), "hs9001/db.sqlite")
|
return filepath.Join(xdgOrFallback("XDG_DATA_HOME", filepath.Join(os.Getenv("HOME"), ".local/share")), "hs9001/db.sqlite")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Carregando…
Criar uma nova questão referindo esta
Bloquear um utilizador