Skip to content

Commit

Permalink
Merge pull request #3 from terasakisatoshi/remove-intermediate-kernel
Browse files Browse the repository at this point in the history
remove intermediate kernel
  • Loading branch information
terasakisatoshi committed Nov 17, 2021
2 parents 3c2a188 + 14ab7ad commit 8401d49
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ traced_runtests.jl traced_nb.jl: tracecompile.jl nb.jl
julia --project=@. --trace-compile=traced_runtests.jl tracecompile.jl
julia --project=@. installkernel.jl
julia --project=@. executenb.jl
julia --project=@. removekernel.jl

build: traced_runtests.jl traced_nb.jl
julia --project=@. build.jl
Expand Down
10 changes: 10 additions & 0 deletions removekernel.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
using IJulia: kerneldir

rm(
joinpath(
kerneldir(),
"julia-trace-$(VERSION.major).$(VERSION.minor)",
),
force=true,
recursive=true,
)

0 comments on commit 8401d49

Please sign in to comment.