We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1284a5d commit 2d87eabCopy full SHA for 2d87eab
docs/localmake.jl
@@ -11,10 +11,11 @@ use the updated `*.md` and source files. This way the Julia session keeps alive
11
individual builds are much faster.
12
=#
13
using Pkg
14
+Pkg.activate(@__DIR__)
15
+
16
using Revise
17
using LiveServer
18
-Pkg.activate(@__DIR__)
19
if VERSION ≤ v"1.11-"
20
Pkg.develop(PackageSpec(path=dirname(@__DIR__))) # adds the package this script is called from
21
end
@@ -38,7 +39,7 @@ while run
38
39
try
40
include("make.jl")
41
catch e
- @info "make.jl error" e
42
+ @error "make.jl error" exception=(e, catch_backtrace())
43
44
45
printstyled("\n\nDocs are served at http://localhost:$port\n\n", color=:blue, bold=true)
0 commit comments