Skip to content

Commit

Permalink
use a vector of PackageSpec
Browse files Browse the repository at this point in the history
Co-Authored-By: Kristoffer Carlsson <kcarlsson89@gmail.com>
  • Loading branch information
aminya and KristofferC committed Jun 24, 2020
1 parent 999a091 commit 46ea53b
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions dev.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
using Pkg
rootdir = @__DIR__
Pkg.develop(PackageSpec(path=joinpath(rootdir,"SnoopCompileCore")))
Pkg.develop(PackageSpec(path=joinpath(rootdir,"SnoopCompileAnalysis")))
Pkg.develop(PackageSpec(path=joinpath(rootdir,"SnoopCompileBot")))
Pkg.develop(PackageSpec(path=rootdir))
Pkg.develop([
PackageSpec(path=joinpath(rootdir,"SnoopCompileCore")),
PackageSpec(path=joinpath(rootdir,"SnoopCompileAnalysis")),
PackageSpec(path=joinpath(rootdir,"SnoopCompileBot")),
PackageSpec(path=rootdir),
])

0 comments on commit 46ea53b

Please sign in to comment.