Skip to content

Commit 43619eb

Browse files
committed
ensure different views build path by default
1 parent c7afd6c commit 43619eb

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "Genie"
22
uuid = "c43c736e-a2d1-11e8-161f-af95117fbd1e"
33
authors = ["Adrian Salceanu <[email protected]>"]
4-
version = "5.15.2"
4+
version = "5.15.3"
55

66
[deps]
77
ArgParse = "c7e460c6-2fb9-53a9-8c5b-16f535851c63"

src/Configuration.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ Base.@kwdef mutable struct Settings
190190
path_helpers::String = joinpath(path_app, "helpers")
191191
path_log::String = "log"
192192
path_tasks::String = "tasks"
193-
path_build::String = buildpath()
193+
path_build::String = "build"
194194
path_plugins::String = "plugins"
195195
path_initializers::String = joinpath(path_config, initializers_folder)
196196
path_db::String = "db"

src/Genie.jl

+4-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ using .Configuration
1010

1111
const config = Configuration.Settings()
1212

13-
1413
include("constants.jl")
1514

1615
import Sockets
@@ -171,4 +170,8 @@ end
171170

172171
const bootstrap = genie
173172

173+
function __init__()
174+
config.path_build = Genie.Configuration.buildpath()
175+
end
176+
174177
end

0 commit comments

Comments
 (0)