Skip to content

Commit f000d97

Browse files
committed
LPD-68592 exportWorkspace relies on relative paths
1 parent 479d3ce commit f000d97

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ String timestamp = formatter.format(now)
3232

3333
tasks.register("exportContainerData") {
3434
doFirst {
35-
String hostPath = file("exported_data/data_${config.namespace}_${timestamp}").absolutePath
35+
String hostPath = projectDir.relativePath(file("exported_data/data_${config.namespace}_${timestamp}"))
3636

3737
getExistingVolumeNames().each {
3838
String volumeName ->

0 commit comments

Comments
 (0)