try again
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2023-04-03 15:21:18 +10:00
parent 1ac819c114
commit f7429dc25b

View File

@@ -26,7 +26,8 @@ var buildTime string // when the executable was built
func main() {
// Load data from environment file
err := godotenv.Load(".env")
envFilename := utils.GetFilePath(".env")
err := godotenv.Load(envFilename)
if err != nil {
panic("Error loading .env file")
}