Skip to content

Commit 6f88735

Browse files
Brain fart
1 parent 67f8d84 commit 6f88735

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

test/bootstrap_examples.jl

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ if isfile(joinpath(@__DIR__, "..", "examples", "Manifest.toml"))
88
exit(0)
99
end
1010

11-
$local_pkg_path = realpath(joinpath(@__DIR__, "..", "..", "JetReconstruction"))
11+
local_pkg_path = realpath(joinpath(@__DIR__, "..", "..", "JetReconstruction"))
1212

13-
if !isdir($local_pkg_path)
13+
if !isdir(local_pkg_path)
1414
# Try a symlink to the current checkout
15-
$local_checkout_path = realpath(joinpath(@__DIR__, "..", ".."))
15+
local_checkout_path = realpath(joinpath(@__DIR__, "..", ".."))
1616
println("Creating symlink from $local_pkg_path to $local_checkout_path")
17-
symlink($local_checkout_path, $local_pkg_path)
17+
symlink($local_checkout_path, local_pkg_path)
1818
end
1919

2020
println("Setting up examples project")
@@ -23,7 +23,7 @@ using Pkg
2323
Pkg.instantiate()
2424
Pkg.resolve()
2525
println(("Seting JetReconstruction development package path: $local_pkg_path"))
26-
Pkg.develop(path = $local_pkg_path)
26+
Pkg.develop(path = local_pkg_path)
2727
Pkg.status()
2828

2929
println("Finished examples boostrap script")

0 commit comments

Comments
 (0)