Change ENV_SHIORI_DIR to SHIORI_DIR to prevent stutter

This commit is contained in:
Radhi Fadlillah 2019-08-06 18:32:12 +07:00
parent 106266e87d
commit cc097f50c8

View file

@ -18,7 +18,7 @@ func init() {
func getDataDirectory() string {
// Try to look at environment variables
dataDir, found := os.LookupEnv("ENV_SHIORI_DIR")
dataDir, found := os.LookupEnv("SHIORI_DIR")
if found {
return dataDir
}