refactor(julials): update docs & remove unused shell scripts

This commit is contained in:
qwjyh 2024-10-22 18:27:36 +09:00
parent ad4a9f53a1
commit f5efb7cb66
5 changed files with 23 additions and 40 deletions

View file

@ -1,15 +1,9 @@
#!/usr/bin/julia
project_path = joinpath(homedir(), ".julia", "environments", "nvim-lspconfig")
if !ispath(project_path)
try
mkdir(project_path)
@info "Created $(project_path)"
touch(joinpath(project_path, "tracecompile.jl"))
catch e
@error e
@error dump(e)
throw(e)
end
mkdir(project_path)
@info "Created $(project_path)"
touch(joinpath(project_path, "tracecompile.jl"))
end
cmd = `julia --project=$(project_path) $(@__DIR__)/add_dependencies.jl`
@info cmd