File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
src/main/groovy/nextflow/scm Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ dependencies {
39
39
api " com.beust:jcommander:1.35"
40
40
api(" com.esotericsoftware.kryo:kryo:2.24.0" ) { exclude group : ' com.esotericsoftware.minlog' , module : ' minlog' }
41
41
api(' org.iq80.leveldb:leveldb:0.12' )
42
- api(' org.eclipse.jgit:org.eclipse.jgit:6.10 .0.202406032230 -r' )
42
+ api(' org.eclipse.jgit:org.eclipse.jgit:7.1 .0.202411261347 -r' )
43
43
api (' javax.activation:activation:1.1.1' )
44
44
api (' javax.mail:mail:1.4.7' )
45
45
api (' org.yaml:snakeyaml:2.2' )
Original file line number Diff line number Diff line change @@ -833,7 +833,7 @@ class AssetManager {
833
833
834
834
protected Map refToMap (Ref ref , Map<String ,Ref > remote ) {
835
835
final entry = new HashMap (2 )
836
- final peel = git. getRepository(). peel(ref)
836
+ final peel = git. getRepository(). getRefDatabase() . peel(ref)
837
837
final objId = peel. getPeeledObjectId() ?: peel. getObjectId()
838
838
// the branch or tag name
839
839
entry. name = shortenRefName(ref. name)
@@ -867,7 +867,7 @@ class AssetManager {
867
867
result << (name == current ? ' *' : ' ' )
868
868
869
869
if ( level ) {
870
- def peel = git. getRepository(). peel(ref)
870
+ def peel = git. getRepository(). getRefDatabase() . peel(ref)
871
871
def obj = peel. getPeeledObjectId() ?: peel. getObjectId()
872
872
result << ' '
873
873
result << formatObjectId(obj, level == 1 )
You can’t perform that action at this time.
0 commit comments