Skip to content

Commit 246aa0c

Browse files
try direct reference
1 parent e899da9 commit 246aa0c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.ci/test.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ import Pkg
33
const GROUP = get(ENV, "GROUP", "All")
44

55
function dev_subpkg(subpkg)
6-
subpkg_path = joinpath(dirname(@__DIR__), "lib", subpkg)
6+
subpkg_path = joinpath("lib", subpkg)
77
Pkg.develop(Pkg.PackageSpec(path=subpkg_path))
88
end
99

1010
function activate_subpkg_env(subpkg)
11-
subpkg_path = joinpath(dirname(@__DIR__), "lib", subpkg)
11+
subpkg_path = joinpath("lib", subpkg)
1212
Pkg.activate(subpkg_path)
1313
Pkg.develop(Pkg.PackageSpec(path=subpkg_path))
1414
Pkg.instantiate()

0 commit comments

Comments
 (0)