diff --git a/Project.toml b/Project.toml index 621831620..73be1a827 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "Genie" uuid = "c43c736e-a2d1-11e8-161f-af95117fbd1e" authors = ["Adrian Salceanu "] -version = "5.24.1" +version = "5.24.2" [deps] ArgParse = "c7e460c6-2fb9-53a9-8c5b-16f535851c63" diff --git a/src/Loader.jl b/src/Loader.jl index 1bb5cbd53..b8cd28d2b 100644 --- a/src/Loader.jl +++ b/src/Loader.jl @@ -66,7 +66,7 @@ function bootstrap(context::Union{Module,Nothing} = default_context(context); sh GLOBAL_ENV_FILE_NAME = "global.jl" if isfile(Genie.config.env_file) - DotEnv.config(;path = Genie.config.env_file, override = true) + DotEnv.config(; path = Genie.config.env_file, override = true) end if haskey(ENV, "GENIE_ENV") @@ -101,7 +101,7 @@ function print_banner() printstyled("| Website https://genieframework.com\n", color = :light_black, bold = true) printstyled("| GitHub https://github.com/genieframework\n", color = :light_black, bold = true) - printstyled("| Docs https://genieframework.com/docs\n", color = :light_black, bold = true) + printstyled("| Docs https://learn.genieframework.com\n", color = :light_black, bold = true) printstyled("| Discord https://discord.com/invite/9zyZbD6J7H\n", color = :light_black, bold = true) printstyled("| Twitter https://twitter.com/essenciary\n\n", color = :light_black, bold = true) printstyled("Active env: $(ENV["GENIE_ENV"] |> uppercase)\n\n", color = :light_blue, bold = true)