Skip to content

Commit

Permalink
Buggfixes
Browse files Browse the repository at this point in the history
  • Loading branch information
farthinder committed Jan 16, 2024
1 parent ca6267e commit d3e5ed9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2039,7 +2039,7 @@ final class JiraInstanceManagerRest {
Map<String, String> filesToUpload = [:]
sourceRoot.eachFileRecurse(FileType.FILES) { sourceFile ->

String relativePath = Paths.get(sourceRoot.parentFile).relativize(Paths.get(sourceFile))
String relativePath = Paths.get(sourceRoot.parentFile.toURI()).relativize(Paths.get(sourceFile.toURI()))

filesToUpload.put(sourceFile.absolutePath, relativePath)
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
package com.eficode.atlassian.jiraInstanceManager

import com.eficode.devstack.container.impl.GroovyContainer
import spock.lang.Ignore
import spock.lang.Shared
import spock.lang.Specification


@Ignore
class CrossGroovyVersionSpec extends Specification{


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -334,9 +334,7 @@ class JiraInstanceManagerRestSpec extends Specification {
srVersionNumber | last
"latest" | false
"7.13.0" | false
"7.6.0" | false
"7.0.0" | false
"6.58.1" | false
"6.55.0" | true


Expand Down Expand Up @@ -432,10 +430,7 @@ class JiraInstanceManagerRestSpec extends Specification {
srVersionNumber | last
"latest" | false
"7.13.0" | false
"7.6.0" | false
"7.0.0" | false
"6.58.1" | false
"6.56.0" | false
"6.55.0" | true

}
Expand Down

0 comments on commit d3e5ed9

Please sign in to comment.